nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 adal,
4 azure-common,
5 buildPythonPackage,
6 fetchPypi,
7 msal,
8 requests,
9}:
10
11buildPythonPackage rec {
12 pname = "azure-datalake-store";
13 version = "1.0.1";
14 format = "setuptools";
15
16 src = fetchPypi {
17 pname = "azure_datalake_store";
18 inherit version;
19 hash = "sha256-U2TURFqrFUocfLECFWKcPORs5ceqrxYHGJDAP65ToDU=";
20 };
21
22 propagatedBuildInputs = [
23 adal
24 azure-common
25 msal
26 requests
27 ];
28
29 # has no tests
30 doCheck = false;
31
32 meta = {
33 description = "This project is the Python filesystem library for Azure Data Lake Store";
34 homepage = "https://github.com/Azure/azure-sdk-for-python";
35 license = lib.licenses.mit;
36 maintainers = with lib.maintainers; [ maxwilson ];
37 };
38}