diff options
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-resource')
-rw-r--r-- | pkgs/development/python-modules/azure-mgmt-resource/default.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-resource/default.nix b/pkgs/development/python-modules/azure-mgmt-resource/default.nix new file mode 100644 index 0000000..c1da240 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-resource/default.nix @@ -0,0 +1,27 @@ +{ stdenv, buildPythonPackage, fetchPypi +, azure-common +, azure-mgmt-nspkg +, msrestazure +}: + +buildPythonPackage rec { + pname = "azure-mgmt-resource"; + version = "2.0.0rc2"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "1anh3m73ppfs12x9cngzgpkp4xqsms52iy2vyaazag9jns9j8709"; + }; + + propagatedBuildInputs = [ azure-common azure-mgmt-nspkg msrestazure ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Microsoft Azure Resource Management Client Library for Python"; + homepage = https://github.com/Azure/azure-sdk-for-python; + license = licenses.mit; + maintainers = with maintainers; [ olcai stesie ]; + }; +} |