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