Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 31 lines 766 B view raw
1{ lib, buildPythonPackage, fetchPypi, isPy27 2, azure-common 3, msrest 4, msrestazure 5}: 6 7buildPythonPackage rec { 8 version = "0.3.0"; 9 pname = "azure-mgmt-security"; 10 disabled = isPy27; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "0z766424783a6y5dp5ybxssb0bfzqb8kpa6zra8ccnbfg4fn478v"; 15 extension = "zip"; 16 }; 17 18 propagatedBuildInputs = [ azure-common msrest msrestazure ]; 19 20 # no tests included 21 doCheck = false; 22 23 pythonImportsCheck = [ "azure.common" "azure.mgmt.security" ]; 24 25 meta = with lib; { 26 description = "Microsoft Azure Security Center Management Client Library for Python"; 27 homepage = "https://github.com/Azure/azure-sdk-for-python"; 28 license = licenses.mit; 29 maintainers = with maintainers; [ jonringer ]; 30 }; 31}