nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 azure-common,
6 azure-mgmt-core,
7 isodate,
8 msrest,
9 setuptools,
10}:
11
12buildPythonPackage rec {
13 pname = "azure-mgmt-appcontainers";
14 version = "4.0.0";
15 pyproject = true;
16
17 src = fetchPypi {
18 pname = "azure_mgmt_appcontainers";
19 inherit version;
20 hash = "sha256-FzETbKAWbF+8IaWM036nZ4fSCYnn+V3BKuYn768dw6U=";
21 };
22
23 build-system = [ setuptools ];
24
25 dependencies = [
26 azure-common
27 azure-mgmt-core
28 isodate
29 msrest
30 ];
31
32 # no tests included
33 doCheck = false;
34
35 pythonImportsCheck = [ "azure.mgmt.appcontainers" ];
36
37 meta = {
38 description = "Microsoft Azure Appcontainers Management Client Library for Python";
39 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/appcontainers/azure-mgmt-appcontainers";
40 license = lib.licenses.mit;
41 maintainers = with lib.maintainers; [ jfroche ];
42 };
43}