diff options
author | Stefan Siegl <stesie@brokenpipe.de> | 2018-09-10 18:33:48 +0200 |
---|---|---|
committer | Stefan Siegl <stesie@brokenpipe.de> | 2018-09-10 18:33:48 +0200 |
commit | b6714f59cce26ddc831ca4a213e8f56476184fb1 (patch) | |
tree | 48abe892298c6d9e77d48e9de7d848af9beee71d /pkgs/development/python-modules/azure-common |
initial commit
Diffstat (limited to 'pkgs/development/python-modules/azure-common')
-rw-r--r-- | pkgs/development/python-modules/azure-common/default.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-common/default.nix b/pkgs/development/python-modules/azure-common/default.nix new file mode 100644 index 0000000..eadb48d --- /dev/null +++ b/pkgs/development/python-modules/azure-common/default.nix @@ -0,0 +1,26 @@ +{ stdenv, buildPythonPackage, fetchPypi, isPyPy +, azure-nspkg +}: + +buildPythonPackage rec { + pname = "azure-common"; + version = "1.1.14"; + disabled = isPyPy; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "0ibnhid0ajnmn7nzbbkjh1jl5iyqa1bnzn1j01nl1vgxkj3wi3sg"; + }; + + propagatedBuildInputs = [ azure-nspkg ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Microsoft Azure Client Library for Python (Common)"; + homepage = https://github.com/Azure/azure-sdk-for-python; + license = licenses.mit; + maintainers = with maintainers; [ olcai stesie ]; + }; +} |