pythonPackages.azure-mgmt-maps: init at 0.1.0
This commit is contained in:
parent
b9b15c5f89
commit
de4d5fc86f
36
pkgs/development/python-modules/azure-mgmt-maps/default.nix
Normal file
36
pkgs/development/python-modules/azure-mgmt-maps/default.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, msrest
|
||||||
|
, msrestazure
|
||||||
|
, azure-common
|
||||||
|
, azure-mgmt-nspkg
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "azure-mgmt-maps";
|
||||||
|
version = "0.1.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
extension = "zip";
|
||||||
|
sha256 = "c120e210bb61768da29de24d28b82f8d42ae24e52396eb6569b499709e22f006";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
msrest
|
||||||
|
msrestazure
|
||||||
|
azure-common
|
||||||
|
azure-mgmt-nspkg
|
||||||
|
];
|
||||||
|
|
||||||
|
# has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "This is the Microsoft Azure Maps Client Library";
|
||||||
|
homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-maps;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ mwilsoninsight ];
|
||||||
|
};
|
||||||
|
}
|
@ -350,6 +350,8 @@ in {
|
|||||||
|
|
||||||
azure-mgmt-managementpartner = callPackage ../development/python-modules/azure-mgmt-managementpartner { };
|
azure-mgmt-managementpartner = callPackage ../development/python-modules/azure-mgmt-managementpartner { };
|
||||||
|
|
||||||
|
azure-mgmt-maps = callPackage ../development/python-modules/azure-mgmt-maps { };
|
||||||
|
|
||||||
azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { };
|
azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { };
|
||||||
|
|
||||||
azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { };
|
azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user