lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.azure-mgmt-privatedns: 0.1.0 -> 1.0.0

authored by

Jonathan Ringer and committed by
Jonathan Ringer
102b7b16 750507ae

+9 -3
+9 -3
pkgs/development/python-modules/azure-mgmt-privatedns/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.1.0"; 9 + version = "1.0.0"; 9 10 pname = "azure-mgmt-privatedns"; 10 11 disabled = isPy27; 11 12 12 13 src = fetchPypi { 13 14 inherit pname version; 14 - sha256 = "08wdvfkk8jh90m3l4nz7knd5vikgfvsx70lk7mkhcvl0xj6gv76j"; 15 + sha256 = "b60f16e43f7b291582c5f57bae1b083096d8303e9d9958e2c29227a55cc27c45"; 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;