2019-04-29 23:35:30 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, msrest
|
|
|
|
, msrestazure
|
|
|
|
, azure-common
|
2021-01-12 00:19:21 +00:00
|
|
|
, azure-mgmt-core
|
2022-04-18 15:34:38 +01:00
|
|
|
, pythonOlder
|
2019-04-29 23:35:30 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "azure-mgmt-datafactory";
|
2022-10-17 22:45:52 +01:00
|
|
|
version = "2.8.1";
|
2022-04-18 15:34:38 +01:00
|
|
|
format = "setuptools";
|
|
|
|
|
2022-10-18 22:01:12 +01:00
|
|
|
disabled = pythonOlder "3.7";
|
2019-04-29 23:35:30 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2022-10-17 22:45:52 +01:00
|
|
|
hash = "sha256-HuCp9J7uukK9QK0w2aHPZXiAsp4Az+6hx60ItbJvfkQ=";
|
2019-04-29 23:35:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
msrest
|
|
|
|
msrestazure
|
|
|
|
azure-common
|
2021-01-12 00:19:21 +00:00
|
|
|
azure-mgmt-core
|
2019-04-29 23:35:30 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
# has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "This is the Microsoft Azure Data Factory Management Client Library";
|
2019-10-19 17:47:11 +01:00
|
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
2019-04-29 23:35:30 +01:00
|
|
|
license = licenses.mit;
|
2020-11-15 14:35:46 +00:00
|
|
|
maintainers = with maintainers; [ maxwilson ];
|
2019-04-29 23:35:30 +01:00
|
|
|
};
|
|
|
|
}
|