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

pythonPackages.azure-mgmt-maps: init at 0.1.0

authored by Max Wilson and committed by Wael M. Nasreddine de4d5fc8 b9b15c5f

+38
+36
pkgs/development/python-modules/azure-mgmt-maps/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , msrest 5 + , msrestazure 6 + , azure-common 7 + , azure-mgmt-nspkg 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "azure-mgmt-maps"; 12 + version = "0.1.0"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + extension = "zip"; 17 + sha256 = "c120e210bb61768da29de24d28b82f8d42ae24e52396eb6569b499709e22f006"; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + msrest 22 + msrestazure 23 + azure-common 24 + azure-mgmt-nspkg 25 + ]; 26 + 27 + # has no tests 28 + doCheck = false; 29 + 30 + meta = with lib; { 31 + description = "This is the Microsoft Azure Maps Client Library"; 32 + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-maps; 33 + license = licenses.mit; 34 + maintainers = with maintainers; [ mwilsoninsight ]; 35 + }; 36 + }
+2
pkgs/top-level/python-packages.nix
··· 350 350 351 351 azure-mgmt-managementpartner = callPackage ../development/python-modules/azure-mgmt-managementpartner { }; 352 352 353 + azure-mgmt-maps = callPackage ../development/python-modules/azure-mgmt-maps { }; 354 + 353 355 azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; 354 356 355 357 azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { };