From b6714f59cce26ddc831ca4a213e8f56476184fb1 Mon Sep 17 00:00:00 2001 From: Stefan Siegl Date: Mon, 10 Sep 2018 18:33:48 +0200 Subject: initial commit --- .../azure-mgmt-datalake-store/default.nix | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-datalake-store/default.nix (limited to 'pkgs/development/python-modules/azure-mgmt-datalake-store') diff --git a/pkgs/development/python-modules/azure-mgmt-datalake-store/default.nix b/pkgs/development/python-modules/azure-mgmt-datalake-store/default.nix new file mode 100644 index 0000000..0ddf28b --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-datalake-store/default.nix @@ -0,0 +1,37 @@ +{ stdenv, buildPythonPackage, fetchPypi +, azure-common +, azure-mgmt-datalake-nspkg +, msrestazure +}: + +buildPythonPackage rec { + pname = "azure-mgmt-datalake-store"; + version = "0.2.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "1m0vn2mw5limh91a23n7s21mw568snb0lbqcsh94p0q0ivlwpp90"; + }; + + # 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-datalake-nspkg + msrestazure + ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "Microsoft Azure Data Lake Store Management Client Library for Python"; + homepage = https://github.com/Azure/azure-sdk-for-python; + license = licenses.mit; + maintainers = with maintainers; [ stesie ]; + }; +} -- cgit v1.2.3