Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 32 lines 711 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, azure-common 5, msrest 6}: 7 8buildPythonPackage rec { 9 pname = "azure-servicefabric"; 10 version = "6.4.0.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 extension = "zip"; 15 sha256 = "f049e8c4a179f1277f2ec60158f88caf14a50f7df491fc6841e360cd61746da1"; 16 }; 17 18 propagatedBuildInputs = [ 19 azure-common 20 msrest 21 ]; 22 23 # has no tests 24 doCheck = false; 25 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://pypi.org/project/azure-servicefabric; 29 license = licenses.mit; 30 maintainers = with maintainers; [ mwilsoninsight ]; 31 }; 32}