From b6aba6cc180d84d5b9892fb1b5810ad94801dd4c Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 3 Jan 2019 22:36:30 +0100 Subject: [PATCH] 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 --- pkgs/development/python-modules/pysnmp/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/pysnmp/default.nix b/pkgs/development/python-modules/pysnmp/default.nix index d2a47cfbca4..38ea31a19d4 100644 --- a/pkgs/development/python-modules/pysnmp/default.nix +++ b/pkgs/development/python-modules/pysnmp/default.nix @@ -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 ]; }; - }