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