Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 39 lines 831 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, python 5, azure-mgmt-common 6, azure-mgmt-core 7, isPy3k 8}: 9 10buildPythonPackage rec { 11 version = "18.0.0"; 12 pname = "azure-mgmt-storage"; 13 disabled = !isPy3k; 14 15 src = fetchPypi { 16 inherit pname version; 17 extension = "zip"; 18 sha256 = "d17beb34273797fa89863632ff0e1eb9b6a55198abb8c7f05d84980762e5f71f"; 19 }; 20 21 propagatedBuildInputs = [ 22 azure-mgmt-common 23 azure-mgmt-core 24 ]; 25 26 pythonNamespaces = [ "azure.mgmt" ]; 27 28 pythonImportsCheck = [ "azure.mgmt.storage" ]; 29 30 # has no tests 31 doCheck = false; 32 33 meta = with lib; { 34 description = "This is the Microsoft Azure Storage Management Client Library"; 35 homepage = "https://github.com/Azure/azure-sdk-for-python"; 36 license = licenses.mit; 37 maintainers = with maintainers; [ jonringer olcai maxwilson ]; 38 }; 39}