Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.azure-mgmt-netapp: 0.14.0 -> 0.15.0

authored by Jonathan Ringer and committed by Jonathan Ringer f9661ed9 4937a3f6

+9 -3
+9 -3
pkgs/development/python-modules/azure-mgmt-netapp/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, isPy27 2 2 , azure-common 3 + , azure-mgmt-core 3 4 , msrest 4 5 , msrestazure 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 - version = "0.14.0"; 9 + version = "0.15.0"; 9 10 pname = "azure-mgmt-netapp"; 10 11 disabled = isPy27; 11 12 12 13 src = fetchPypi { 13 14 inherit pname version; 14 - sha256 = "6fd915e68d314bec8b56c6ece194005d2c4fc97478fc1f797639d4a6913c1539"; 15 + sha256 = "5e98c360609a77b443b2fe431e0337e5cb705b4f02d0204791f9985f7ce68836"; 15 16 extension = "zip"; 16 17 }; 17 18 18 - propagatedBuildInputs = [ azure-common msrest msrestazure ]; 19 + propagatedBuildInputs = [ 20 + azure-common 21 + azure-mgmt-core 22 + msrest 23 + msrestazure 24 + ]; 19 25 20 26 # no tests included 21 27 doCheck = false;