summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-servicefabric/default.nix
blob: 9e10d5c8161112517337658ceb298c03830fce53 (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
33
34
35
36
37
38
39
40
41
{
  lib,
  buildPythonPackage,
  fetchPypi,
  azure-common,
  msrest,
  setuptools,
}:

buildPythonPackage (finalAttrs: {
  pname = "azure-servicefabric";
  version = "8.2.0.0";
  pyproject = true;

  __structuredAttrs = true;

  src = fetchPypi {
    inherit (finalAttrs) pname version;
    extension = "zip";
    hash = "sha256-9JyHWUR5cIF7my09S5dDl2Xc91ugG2Bmzpa2BQUvuyM=";
  };

  build-system = [ setuptools ];

  dependencies = [
    azure-common
    msrest
  ];

  # has no tests
  doCheck = false;

  pythonImportsCheck = [ "azure.servicefabric" ];

  meta = {
    description = "This project provides a client library in Python that makes it easy to consume Microsoft Azure Storage services";
    homepage = "https://github.com/Azure/azure-sdk-for-python";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ maxwilson ];
  };
})