diff options
Diffstat (limited to 'pkgs/development/python-modules/azure-storage-common/default.nix')
-rw-r--r-- | pkgs/development/python-modules/azure-storage-common/default.nix | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-storage-common/default.nix b/pkgs/development/python-modules/azure-storage-common/default.nix new file mode 100644 index 0000000..3a189d7 --- /dev/null +++ b/pkgs/development/python-modules/azure-storage-common/default.nix @@ -0,0 +1,40 @@ +{ stdenv, buildPythonPackage, fetchPypi +, azure-common +, azure-storage-nspkg +, cryptography +, python-dateutil +, requests +}: + +buildPythonPackage rec { + pname = "azure-storage-common"; + version = "1.1.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "1ks0h2vvswgknhxpwp9njy3q25r1mp3hl1fald6nrwcymnqa8rwc"; + }; + + # Fix build w/ wheel 0.31, see https://github.com/Azure/azure-storage-python/pull/443 + postPatch = '' + sed -i azure_bdist_wheel.py \ + -e '1,483d' -e '/from wheel.bdist_wheel import bdist_wheel/ { s/^#//; }' + ''; + + propagatedBuildInputs = [ + azure-common + azure-storage-nspkg + cryptography + python-dateutil + requests + ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Microsoft Azure Storage Common Client Library for Python"; + homepage = https://github.com/Azure/azure-storage-python; + license = licenses.mit; + maintainers = with maintainers; [ stesie ]; + }; +} |