stage-2-init: fix false positives for RO Nix store mounts (#375257)
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-extendedlocation / default.nix
blob94e4a143e6b6454f9829f9d76fd8816dac551796
2   lib,
3   azure-common,
4   azure-mgmt-core,
5   buildPythonPackage,
6   fetchPypi,
7   isodate,
8   pythonOlder,
9   setuptools,
10   typing-extensions,
13 buildPythonPackage rec {
14   pname = "azure-mgmt-extendedlocation";
15   version = "2.0.0";
16   pyproject = true;
18   disabled = pythonOlder "3.9";
20   src = fetchPypi {
21     pname = "azure_mgmt_extendedlocation";
22     inherit version;
23     hash = "sha256-O1wdLwoh8V6bF29EAgbHAqH3f6S5ffHKQAH5kavPfNE=";
24   };
26   build-system = [ setuptools ];
28   dependencies = [
29     azure-common
30     azure-mgmt-core
31     isodate
32     typing-extensions
33   ];
35   # Tests are only available in mono repo
36   doCheck = false;
38   pythonImportsCheck = [ "azure.mgmt.extendedlocation" ];
40   meta = with lib; {
41     description = "Microsoft Azure Extendedlocation Management Client Library for Python";
42     homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/extendedlocation/azure-mgmt-extendedlocation";
43     changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-extendedlocation_${version}/sdk/extendedlocation/azure-mgmt-extendedlocation";
44     license = licenses.mit;
45     maintainers = [ ];
46   };