aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/azure-mgmt-datalake-nspkg/default.nix
blob: ce4f623657eb86a5bfa8c7b42857767cbce9734a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, buildPythonPackage
, fetchPypi
, azure-mgmt-nspkg
}:

buildPythonPackage rec {
  pname = "azure-mgmt-datalake-nspkg";
  version = "3.0.1";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "deb192ba422f8b3ec272ce4e88736796f216f28ea5b03f28331d784b7a3f4880";
  };

  propagatedBuildInputs = [
    azure-mgmt-nspkg
  ];

  # has no tests
  doCheck = false;

  meta = with lib; {
    description = "This is the Microsoft Azure Data Lake Management namespace package";
    homepage = "https://github.com/Azure/azure-sdk-for-python";
    license = licenses.mit;
    maintainers = with maintainers; [ mwilsoninsight ];
  };
}