My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pysnmp/default.nix

31 lines
686 B

{ lib
, buildPythonPackage
, fetchPypi
, pyasn1
, pycryptodomex
, pysmi
}:
buildPythonPackage rec {
pname = "pysnmp";
version = "4.4.12";
src = fetchPypi {
inherit pname version;
sha256 = "1acbfvpbr45i137s00mbhh21p71ywjfw3r8z0ybcmjjqz7rbwg8c";
};
patches = [ ./setup.py-Fix-the-setuptools-version-check.patch ];
# NameError: name 'mibBuilder' is not defined
doCheck = false;
propagatedBuildInputs = [ pyasn1 pycryptodomex pysmi ];
meta = with lib; {
homepage = "http://snmplabs.com/pysnmp/index.html";
description = "A pure-Python SNMPv1/v2c/v3 library";
license = licenses.bsd2;
maintainers = with maintainers; [ primeos koral ];
};
}