nixpkgs/pkgs/development/python-modules/atenpdu/default.nix
2023-05-14 23:43:33 +02:00

40 lines
708 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, async-timeout
, pysnmplib
, pythonOlder
}:
buildPythonPackage rec {
pname = "atenpdu";
version = "0.6.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Of7tQJNqaLDgO8nie6rSd1saMbauXJBp8vWfXYAziEE=";
};
propagatedBuildInputs = [
async-timeout
pysnmplib
];
# Project has no test
doCheck = false;
pythonImportsCheck = [
"atenpdu"
];
meta = with lib; {
description = "Python interface to control ATEN PE PDUs";
homepage = "https://github.com/mtdcr/pductl";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}