Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 version = "3.0.2"; 8 pname = "azure-nspkg"; 9 10 src = fetchPypi { 11 inherit pname version; 12 extension = "zip"; 13 sha256 = "e7d3cea6af63e667d87ba1ca4f8cd7cb4dfca678e4c55fc1cedb320760e39dd0"; 14 }; 15 16 doCheck = false; 17 18 meta = with lib; { 19 description = "Microsoft Azure SDK for Python"; 20 homepage = "https://github.com/Azure/azure-sdk-for-python"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ olcai maxwilson ]; 23 }; 24}