Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.11 43 lines 954 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonOlder 5, azure-common 6, azure-mgmt-core 7, isodate 8}: 9 10buildPythonPackage rec { 11 pname = "azure-mgmt-netapp"; 12 version = "11.0.0"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.8"; 16 17 src = fetchPypi { 18 inherit pname version; 19 hash = "sha256-00cDFHpaEciRQLHM+Kt3uOtw/geOn5+onrY7lav6EeU="; 20 }; 21 22 propagatedBuildInputs = [ 23 azure-common 24 azure-mgmt-core 25 isodate 26 ]; 27 28 # no tests included 29 doCheck = false; 30 31 pythonImportsCheck = [ 32 "azure.common" 33 "azure.mgmt.netapp" 34 ]; 35 36 meta = with lib; { 37 description = "Microsoft Azure NetApp Files Management Client Library for Python"; 38 homepage = "https://github.com/Azure/azure-sdk-for-python"; 39 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-netapp_${version}/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md"; 40 license = licenses.mit; 41 maintainers = with maintainers; [ jonringer ]; 42 }; 43}