nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, buildPythonPackage
3, fetchPypi
4, azure-mgmt-nspkg
5}:
6
7buildPythonPackage rec {
8 pname = "azure-mgmt-datalake-nspkg";
9 version = "3.0.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 extension = "zip";
14 sha256 = "deb192ba422f8b3ec272ce4e88736796f216f28ea5b03f28331d784b7a3f4880";
15 };
16
17 propagatedBuildInputs = [
18 azure-mgmt-nspkg
19 ];
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}