nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 msrest,
6 msrestazure,
7 azure-common,
8 azure-mgmt-core,
9}:
10
11buildPythonPackage rec {
12 pname = "azure-mgmt-containerinstance";
13 version = "10.1.0";
14 format = "setuptools";
15
16 src = fetchPypi {
17 inherit pname version;
18 extension = "zip";
19 hash = "sha256-eNQ3rbKFdPRIyDjtXwH5ztN4GWCYBh3rWdn3AxcEwX4=";
20 };
21
22 propagatedBuildInputs = [
23 msrest
24 msrestazure
25 azure-common
26 azure-mgmt-core
27 ];
28
29 # has no tests
30 doCheck = false;
31
32 pythonImportsCheck = [ "azure.mgmt.containerinstance" ];
33
34 meta = {
35 description = "This is the Microsoft Azure Container Instance Client Library";
36 homepage = "https://github.com/Azure/azure-sdk-for-python";
37 license = lib.licenses.mit;
38 maintainers = with lib.maintainers; [ maxwilson ];
39 };
40}