aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-datalake-store
diff options
context:
space:
mode:
authorStefan Siegl <stesie@brokenpipe.de>2018-09-10 18:33:48 +0200
committerStefan Siegl <stesie@brokenpipe.de>2018-09-10 18:33:48 +0200
commitb6714f59cce26ddc831ca4a213e8f56476184fb1 (patch)
tree48abe892298c6d9e77d48e9de7d848af9beee71d /pkgs/development/python-modules/azure-datalake-store
initial commit
Diffstat (limited to 'pkgs/development/python-modules/azure-datalake-store')
-rw-r--r--pkgs/development/python-modules/azure-datalake-store/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-datalake-store/default.nix b/pkgs/development/python-modules/azure-datalake-store/default.nix
new file mode 100644
index 0000000..b2b1d39
--- /dev/null
+++ b/pkgs/development/python-modules/azure-datalake-store/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, buildPythonPackage, fetchPypi, isPy27, pythonOlder
+, adal
+, cffi
+, futures
+, pathlib2
+}:
+
+buildPythonPackage rec {
+ pname = "azure_datalake_store";
+ version = "0.0.27";
+ format = "wheel";
+
+ src = fetchPypi {
+ inherit pname version format;
+ sha256 = "1h9073jzc2jm9lj345hx59y9rg4qp6fyislq1324hjy5vmvjpis2";
+ };
+
+ propagatedBuildInputs = [ adal cffi ]
+ ++ stdenv.lib.optional (isPy27) futures
+ ++ stdenv.lib.optional (pythonOlder "3.4") pathlib2;
+
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Azure Data Lake Store Filesystem Client Library for Python";
+ homepage = https://github.com/Azure/azure-data-lake-store-python;
+ license = licenses.mit;
+ maintainers = with maintainers; [ stesie ];
+ };
+}