nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 39 lines 810 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, msrest 5, msrestazure 6, azure-common 7, azure-mgmt-core 8, azure-mgmt-nspkg 9}: 10 11buildPythonPackage rec { 12 pname = "azure-mgmt-search"; 13 version = "8.0.0"; 14 15 src = fetchPypi { 16 inherit pname version; 17 extension = "zip"; 18 sha256 = "a96d50c88507233a293e757202deead980c67808f432b8e897c4df1ca088da7e"; 19 }; 20 21 propagatedBuildInputs = [ 22 azure-common 23 azure-mgmt-core 24 azure-mgmt-nspkg 25 msrest 26 msrestazure 27 ]; 28 29 # has no tests 30 doCheck = false; 31 pythonImportsCheck = [ "azure.mgmt.search" ]; 32 33 meta = with lib; { 34 description = "This is the Microsoft Azure Search Management Client Library"; 35 homepage = "https://github.com/Azure/azure-sdk-for-python"; 36 license = licenses.mit; 37 maintainers = with maintainers; [ maxwilson ]; 38 }; 39}