nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildPythonPackage, fetchPypi, isPy27
2, azure-common
3, azure-mgmt-core
4, msrest
5, msrestazure
6}:
7
8buildPythonPackage rec {
9 version = "2.0.0";
10 pname = "azure-mgmt-appconfiguration";
11 disabled = isPy27;
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "97e990ec6a5a3acafc7fc1add8ff1a160ebb2052792931352fd7cf1d90f1f956";
16 extension = "zip";
17 };
18
19 propagatedBuildInputs = [
20 azure-common
21 azure-mgmt-core
22 msrest
23 msrestazure
24 ];
25
26 # no tests included
27 doCheck = false;
28
29 pythonNamespaces = [ "azure.mgmt" ];
30
31 pythonImportsCheck = [ "azure.common" "azure.mgmt.appconfiguration" ];
32
33 meta = with lib; {
34 description = "Microsoft Azure App Configuration Management Client Library for Python";
35 homepage = "https://github.com/Azure/azure-sdk-for-python";
36 license = licenses.mit;
37 maintainers = with maintainers; [ jonringer ];
38 };
39}