Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib
2, buildPythonPackage
3, fetchPypi
4, requests
5, adal
6, azure-common
7, futures
8, pathlib2
9, isPy3k
10}:
11
12buildPythonPackage rec {
13 pname = "azure-datalake-store";
14 version = "0.0.49";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "3fcede6255cc9cd083d498c3a399b422f35f804c561bb369a7150ff1f2f07da9";
19 };
20
21 propagatedBuildInputs = [
22 requests
23 adal
24 azure-common
25 ] ++ lib.optionals (!isPy3k) [
26 futures
27 pathlib2
28 ];
29
30 # has no tests
31 doCheck = false;
32
33 meta = with lib; {
34 description = "This project is the Python filesystem library for Azure Data Lake Store";
35 homepage = "https://github.com/Azure/azure-sdk-for-python";
36 license = licenses.mit;
37 maintainers = with maintainers; [ mwilsoninsight ];
38 };
39}