bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
33 lines
757 B
Nix
33 lines
757 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
requests,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pynut2";
|
|
version = "2.1.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mezz64";
|
|
repo = "python-nut2";
|
|
rev = version;
|
|
sha256 = "1lg7n1frndfgw73s0ssl1h7kc6zxm7fpiwlc6v6d60kxzaj1dphx";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
pythonImportsCheck = [ "pynut2.nut2" ];
|
|
|
|
# tests are unmaintained and broken
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "API overhaul of PyNUT, a Python library to allow communication with NUT (Network UPS Tools) servers";
|
|
homepage = "https://github.com/mezz64/python-nut2";
|
|
license = with licenses; [ gpl3Plus ];
|
|
maintainers = [ maintainers.luker ];
|
|
};
|
|
}
|