summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/alibabacloud-credentials-api/default.nix
blob: f4b8863700510e0d27b72ec9c822683d39406f05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
}:

buildPythonPackage (finalAttrs: {
  pname = "alibabacloud-credentials-api";
  version = "1.0.1";
  pyproject = true;

  src = fetchPypi {
    pname = "alibabacloud_credentials_api";
    inherit (finalAttrs) version;
    hash = "sha256-jqBmimVY9pVrjSCy5WHRmoDqKcIs9WowBNQ0skqYGzY=";
  };

  build-system = [ setuptools ];

  pythonImportsCheck = [ "alibabacloud_credentials_api" ];

  # Module has only tests in the untagged upstream repo
  doCheck = false;

  meta = {
    description = "Aliyun Credentials API Library for Python";
    homepage = "https://pypi.org/project/alibabacloud-credentials-api/";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
  };
})