pysnmp: add missing dep on pycryptodome, fix build

pycrypto is no longer needed, so remove.
This commit is contained in:
Will Dietz 2018-12-30 13:07:27 -06:00
parent a02b6bc318
commit d1d5c3098c
1 changed files with 2 additions and 2 deletions

View File

@ -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;