linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / azure-servicefabric / default.nix
blob743f0abd92566c7c37842eee9a494a9b6f4604ac
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , azure-common
5 , msrest
6 }:
8 buildPythonPackage rec {
9   pname = "azure-servicefabric";
10   version = "7.2.0.46";
12   src = fetchPypi {
13     inherit pname version;
14     extension = "zip";
15     sha256 = "c15fd5e8fe33a12295435f16e007edcfd8f660547795742f9b74ef8fb3a431ba";
16   };
18   propagatedBuildInputs = [
19     azure-common
20     msrest
21   ];
23   # has no tests
24   doCheck = false;
26   meta = with lib; {
27     description = "This project provides a client library in Python that makes it easy to consume Microsoft Azure Storage services";
28     homepage = "https://github.com/Azure/azure-sdk-for-python";
29     license = licenses.mit;
30     maintainers = with maintainers; [ maxwilson ];
31   };