pysnmp: add missing dep on pycryptodome, fix build
pycrypto is no longer needed, so remove.
This commit is contained in:
parent
a02b6bc318
commit
d1d5c3098c
|
@ -2,7 +2,7 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pyasn1
|
, pyasn1
|
||||||
, pycrypto
|
, pycryptodomex
|
||||||
, pysmi
|
, pysmi
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
||||||
# 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;
|
||||||
|
|
Loading…
Reference in New Issue