pythonPackages.pysnmp: 4.4.6 -> 4.4.8

The build was broken [0] due to an incorrect dependency (not sure why it
was working before, maybe the libraries where compatible).

[0]: https://hydra.nixos.org/build/86085666
This commit is contained in:
Michael Weiss 2019-01-03 22:36:30 +01:00
parent 9abdfa1c0e
commit b6aba6cc18
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83

View File

@ -2,23 +2,23 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pyasn1 , pyasn1
, pycrypto , pycryptodomex
, pysmi , pysmi
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "4.4.6"; version = "4.4.8";
pname = "pysnmp"; pname = "pysnmp";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "e34ffa0dce5f69adabd478ff76c3e1b08e32ebb0767df8b178d0704f4a1ac406"; sha256 = "1c42qicrh56m49374kxna2s2nmdwna3yqgnz16frzj0dw7vxrrhk";
}; };
# NameError: name 'mibBuilder' is not defined # NameError: name 'mibBuilder' is not defined
doCheck = false; doCheck = false;
propagatedBuildInputs = [ pyasn1 pycrypto pysmi ]; propagatedBuildInputs = [ pyasn1 pycryptodomex pysmi ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://pysnmp.sf.net; homepage = http://pysnmp.sf.net;
@ -26,5 +26,4 @@ buildPythonPackage rec {
license = licenses.bsd2; license = licenses.bsd2;
maintainers = with maintainers; [ koral ]; maintainers = with maintainers; [ koral ];
}; };
} }