diff options
Diffstat (limited to 'pkgs/development/python-modules/pysnmplib/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pysnmplib/default.nix | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/pysnmplib/default.nix b/pkgs/development/python-modules/pysnmplib/default.nix index abcbe70562de..ccb5320a67ac 100644 --- a/pkgs/development/python-modules/pysnmplib/default.nix +++ b/pkgs/development/python-modules/pysnmplib/default.nix @@ -1,11 +1,12 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, poetry-core -, pycryptodomex -, pysnmp-pyasn1 -, pysnmp-pysmi -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + poetry-core, + pycryptodomex, + pysnmp-pyasn1, + pysnmp-pysmi, + pythonOlder, }: buildPythonPackage rec { @@ -22,9 +23,7 @@ buildPythonPackage rec { hash = "sha256-AtQqXiy943cYhHDsyz9Yk5uA4xK7Q4p21CT3X3zYzrQ="; }; - nativeBuildInputs = [ - poetry-core - ]; + nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ pysnmp-pysmi @@ -35,9 +34,7 @@ buildPythonPackage rec { # Module has no test, examples are used for testing doCheck = false; - pythonImportsCheck = [ - "pysnmp" - ]; + pythonImportsCheck = [ "pysnmp" ]; meta = with lib; { description = "Implementation of v1/v2c/v3 SNMP engine"; |