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-mgmt-servicefabric |
initial commit
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-servicefabric')
-rw-r--r-- | pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix b/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix new file mode 100644 index 0000000..f62c89b --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix @@ -0,0 +1,39 @@ +{ stdenv, buildPythonPackage, fetchPypi +, azure-common +, azure-mgmt-nspkg +, msrest +, msrestazure +}: + +buildPythonPackage rec { + pname = "azure-mgmt-servicefabric"; + version = "0.1.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "0wv3rni1jyqrh75nf5gzag2437fmy5j3wnnc10bgiz11qayqjxwz"; + }; + + # 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-mgmt-nspkg + msrest + msrestazure + ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Microsoft Azure Service Fabric Management Client Library for Python"; + homepage = https://github.com/Azure/azure-sdk-for-python; + license = licenses.mit; + maintainers = with maintainers; [ stesie ]; + }; +} |