nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 46 lines 869 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 wheel, 7 azure-common, 8 azure-mgmt-core, 9 isodate, 10 typing-extensions, 11}: 12 13buildPythonPackage rec { 14 pname = "azure-mgmt-mysqlflexibleservers"; 15 version = "1.0.0"; 16 pyproject = true; 17 18 src = fetchPypi { 19 pname = "azure_mgmt_mysqlflexibleservers"; 20 inherit version; 21 hash = "sha256-0HemVoiKXFl39HmiRKZKxKHTUQAumaft2vakmoIZLlY="; 22 }; 23 24 build-system = [ 25 setuptools 26 wheel 27 ]; 28 29 dependencies = [ 30 azure-common 31 azure-mgmt-core 32 isodate 33 typing-extensions 34 ]; 35 36 pythonImportsCheck = [ 37 "azure.mgmt.mysqlflexibleservers" 38 ]; 39 40 meta = { 41 description = "Microsoft Azure Mysqlflexibleservers Management Client Library for Python"; 42 homepage = "https://pypi.org/project/azure-mgmt-mysqlflexibleservers/"; 43 license = lib.licenses.mit; 44 maintainers = [ ]; 45 }; 46}