My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pynut2/default.nix

33 lines
733 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
}:
buildPythonPackage rec {
pname = "pynut2";
version = "2.1.2";
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 ];
};
}