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
|
, 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 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user