Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 azure-mgmt-nspkg,
6}:
7
8buildPythonPackage rec {
9 pname = "azure-mgmt-datalake-nspkg";
10 version = "3.0.1";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 extension = "zip";
16 sha256 = "deb192ba422f8b3ec272ce4e88736796f216f28ea5b03f28331d784b7a3f4880";
17 };
18
19 propagatedBuildInputs = [ azure-mgmt-nspkg ];
20
21 # has no tests
22 doCheck = false;
23
24 meta = with lib; {
25 description = "This is the Microsoft Azure Data Lake Management namespace package";
26 homepage = "https://github.com/Azure/azure-sdk-for-python";
27 license = licenses.mit;
28 maintainers = with maintainers; [ maxwilson ];
29 };
30}