python310Packages.atenpdu: 0.3.4 -> 0.3.5

This commit is contained in:
Fabian Affolter 2022-09-20 22:25:54 +02:00
parent 68255282fd
commit c6e5c83346

View file

@ -1,23 +1,34 @@
{ lib
, async-timeout
, buildPythonPackage
, fetchPypi
, pysnmp
, pythonOlder
}:
buildPythonPackage rec {
pname = "atenpdu";
version = "0.3.4";
version = "0.3.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-vvq8InmJUgvm/PpvZutpsBR3Fj1gR+xrkgfEGlw04Ek=";
hash = "sha256-MGxlzAEcd2EzIjAjY7/1xg1ZQhyL7dcFmCzfY9+jGJ4=";
};
propagatedBuildInputs = [ pysnmp ];
propagatedBuildInputs = [
async-timeout
pysnmp
];
# Project has no test
doCheck = false;
pythonImportsCheck = [ "atenpdu" ];
pythonImportsCheck = [
"atenpdu"
];
meta = with lib; {
description = "Python interface to control ATEN PE PDUs";