mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-02 17:09:09 +03:00
python3Packages.atenpdu: init at 0.3.1
This commit is contained in:
parent
0f864eb45b
commit
3a43bbbc7c
28
pkgs/development/python-modules/atenpdu/default.nix
Normal file
28
pkgs/development/python-modules/atenpdu/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user