Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-datafactory / default.nix
blob7f760eecf397e4f37316d45cf025b1211f5b7c3d
1 { lib
2 , azure-common
3 , azure-mgmt-core
4 , buildPythonPackage
5 , fetchPypi
6 , isodate
7 , pythonOlder
8 , setuptools
9 }:
11 buildPythonPackage rec {
12   pname = "azure-mgmt-datafactory";
13   version = "6.1.0";
14   pyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-9WMsfVh9ca/nbbTPVuj1BwhIv6kGZlPbTzqzhvadBps=";
21   };
23   nativeBuildInputs = [
24     setuptools
25   ];
27   propagatedBuildInputs = [
28     azure-common
29     azure-mgmt-core
30     isodate
31   ];
33   # has no tests
34   doCheck = false;
36   pythonImportsCheck = [
37     "azure.mgmt.datafactory"
38   ];
40   meta = with lib; {
41     description = "This is the Microsoft Azure Data Factory Management Client Library";
42     homepage = "https://github.com/Azure/azure-sdk-for-python";
43     changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-datafactory_${version}/sdk/datafactory/azure-mgmt-datafactory";
44     license = licenses.mit;
45     maintainers = with maintainers; [ maxwilson ];
46   };