python3Packages.atenpdu: init at 0.3.1

This commit is contained in:
Fabian Affolter 2021-01-21 23:55:34 +01:00 committed by Jonathan Ringer
parent 0f864eb45b
commit 3a43bbbc7c
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, pysnmp
}:
buildPythonPackage rec {
pname = "atenpdu";
version = "0.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "1np9p3d180c26p54nw33alb003lhx6fprr21h45dd8gqk3slm13c";
};
propagatedBuildInputs = [ pysnmp ];
# 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 ];
};
}

View file

@ -492,6 +492,8 @@ in {
asysocks = callPackage ../development/python-modules/asysocks { };
atenpdu = callPackage ../development/python-modules/atenpdu { };
atlassian-python-api = callPackage ../development/python-modules/atlassian-python-api { };
atom = callPackage ../development/python-modules/atom { };