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