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
|
||||
, fetchPypi
|
||||
, pyasn1
|
||||
, pycrypto
|
||||
, pycryptodomex
|
||||
, pysmi
|
||||
}:
|
||||
|
||||
|
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
|||
# 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;
|
||||
|
|
Loading…
Reference in New Issue