Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 34 lines 750 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, msrest 5, azure-common 6, msrestazure 7}: 8 9buildPythonPackage rec { 10 pname = "azure-eventgrid"; 11 version = "1.3.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 extension = "zip"; 16 sha256 = "c82c4bf6ea59aeec69ce8f95f1b6a4edc6d733874aeb056669c9d2806168c86e"; 17 }; 18 19 propagatedBuildInputs = [ 20 msrest 21 msrestazure 22 azure-common 23 ]; 24 25 # has no tests 26 doCheck = false; 27 28 meta = with lib; { 29 description = "A fully-managed intelligent event routing service that allows for uniform event consumption using a publish-subscribe model"; 30 homepage = "https://github.com/Azure/azure-sdk-for-python"; 31 license = licenses.mit; 32 maintainers = with maintainers; [ mwilsoninsight ]; 33 }; 34}