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