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:
parent
9abdfa1c0e
commit
b6aba6cc18
@ -2,23 +2,23 @@
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pyasn1
|
||||
, pycrypto
|
||||
, pycryptodomex
|
||||
, pysmi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "4.4.6";
|
||||
version = "4.4.8";
|
||||
pname = "pysnmp";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "e34ffa0dce5f69adabd478ff76c3e1b08e32ebb0767df8b178d0704f4a1ac406";
|
||||
sha256 = "1c42qicrh56m49374kxna2s2nmdwna3yqgnz16frzj0dw7vxrrhk";
|
||||
};
|
||||
|
||||
# NameError: name 'mibBuilder' is not defined
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = [ pyasn1 pycrypto pysmi ];
|
||||
propagatedBuildInputs = [ pyasn1 pycryptodomex pysmi ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://pysnmp.sf.net;
|
||||
@ -26,5 +26,4 @@ buildPythonPackage rec {
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ koral ];
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user