Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-sqlvirtualmachine / default.nix
blob723e389a991b20625c063b6745f6651ba9ed255c
2   lib,
3   azure-common,
4   azure-mgmt-core,
5   buildPythonPackage,
6   fetchPypi,
7   msrest,
8   msrestazure,
9   pythonOlder,
10   setuptools,
13 buildPythonPackage rec {
14   pname = "azure-mgmt-sqlvirtualmachine";
15   version = "0.5.0";
16   pyproject = true;
18   disabled = pythonOlder "3.9";
20   src = fetchPypi {
21     inherit pname version;
22     hash = "sha256-talCNRKnsShErAFDZqHVPIEBehTzlna+7fAEpTKqKq0=";
23     extension = "zip";
24   };
26   build-system = [ setuptools ];
28   dependencies = [
29     azure-common
30     azure-mgmt-core
31     msrest
32     msrestazure
33   ];
35   # no tests included
36   doCheck = false;
38   pythonImportsCheck = [
39     "azure.common"
40     "azure.mgmt.sqlvirtualmachine"
41   ];
43   meta = with lib; {
44     description = "Microsoft Azure SQL Virtual Machine Management Client Library for Python";
45     homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/sql/azure-mgmt-sqlvirtualmachine";
46     changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-sqlvirtualmachine_${version}/sdk/sql/azure-mgmt-sqlvirtualmachine/CHANGELOG.md";
47     license = licenses.mit;
48     maintainers = with maintainers; [ jonringer ];
49   };