1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 azure-common, 6 msrest, 7}: 8 9buildPythonPackage rec { 10 pname = "azure-servicefabric"; 11 version = "8.2.0.0"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 extension = "zip"; 17 sha256 = "f49c8759447970817b9b2d3d4b97439765dcf75ba01b6066ce96b605052fbb23"; 18 }; 19 20 propagatedBuildInputs = [ 21 azure-common 22 msrest 23 ]; 24 25 # has no tests 26 doCheck = false; 27 28 meta = with lib; { 29 description = "This project provides a client library in Python that makes it easy to consume Microsoft Azure Storage services"; 30 homepage = "https://github.com/Azure/azure-sdk-for-python"; 31 license = licenses.mit; 32 maintainers = with maintainers; [ maxwilson ]; 33 }; 34}