Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, pythonOlder 2, azure-common 3, azure-mgmt-core 4, msrest 5, msrestazure 6}: 7 8buildPythonPackage rec { 9 pname = "azure-mgmt-synapse"; 10 version = "2.0.0"; 11 disabled = pythonOlder "3"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "bec6bdfaeb55b4fdd159f2055e8875bf50a720bb0fce80a816e92a2359b898c8"; 16 extension = "zip"; 17 }; 18 19 propagatedBuildInputs = [ 20 azure-common 21 azure-mgmt-core 22 msrest 23 msrestazure 24 ]; 25 26 pythonImportsCheck = [ "azure.mgmt.synapse" ]; 27 28 meta = with lib; { 29 description = "Azure python SDK"; 30 homepage = "https://github.com/Azure/azure-sdk-for-python/"; 31 license = licenses.mit; 32 maintainers = with maintainers; [ jonringer ]; 33 }; 34}