Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-datalake-store / default.nix
blob7dcf5c8b739880779017196571d9fe1688cd7da5
1 { lib
2 , adal
3 , azure-common
4 , buildPythonPackage
5 , fetchPypi
6 , msal
7 , pythonOlder
8 , requests
9 }:
11 buildPythonPackage rec {
12   pname = "azure-datalake-store";
13   version = "0.0.53";
14   format = "setuptools";
16   disabled = pythonOlder "3.8";
18   src = fetchPypi {
19     inherit pname version;
20     sha256 = "sha256-BbbeYu4/KgpuaUHmkzt5K4AMPn9v/OL8MkvBmHV1c5M=";
21   };
23   propagatedBuildInputs = [
24     adal
25     azure-common
26     msal
27     requests
28   ];
30   # has no tests
31   doCheck = false;
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; [ maxwilson ];
38   };