evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-servicefabric / default.nix
blob916f785bf70be7105ae9aeba728f85eb20d0235d
2   lib,
3   azure-common,
4   azure-mgmt-core,
5   buildPythonPackage,
6   fetchPypi,
7   isodate,
8   pythonOlder,
9   setuptools,
12 buildPythonPackage rec {
13   pname = "azure-mgmt-servicefabric";
14   version = "2.1.0";
15   pyproject = true;
17   disabled = pythonOlder "3.9";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-oIQzBJVUQ2yQhEvIqWgg6INplITm/8mQMv0lcfjF99Y=";
22   };
24   nativeBuildInputs = [ setuptools ];
26   propagatedBuildInputs = [
27     isodate
28     azure-common
29     azure-mgmt-core
30   ];
32   pythonNamespaces = [ "azure.mgmt" ];
34   # Module has no tests
35   doCheck = false;
37   meta = with lib; {
38     description = "This is the Microsoft Azure Service Fabric Management Client Library";
39     homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicefabric/azure-mgmt-servicefabric";
40     changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-servicefabric_${version}/sdk/servicefabric/azure-mgmt-servicefabric/CHANGELOG.md";
41     license = licenses.mit;
42     maintainers = with maintainers; [ maxwilson ];
43   };