Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 29 lines 725 B view raw
1{ lib, buildPythonPackage, fetchPypi, isPy27 2, azure-core 3, msrest 4}: 5 6buildPythonPackage rec { 7 pname = "azure-appconfiguration"; 8 version = "1.1.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 extension = "zip"; 13 sha256 = "b83cd2cb63d93225de84e27abbfc059212f8de27766f4c58dd3abb839dff0be4"; 14 }; 15 16 propagatedBuildInputs = [ 17 azure-core 18 msrest 19 ]; 20 21 pythonImportsCheck = [ "azure.appconfiguration" ]; 22 23 meta = with lib; { 24 description = "Microsoft App Configuration Data Library for Python"; 25 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/appconfiguration/azure-appconfiguration"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ jonringer ]; 28 }; 29}