depot/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-datafactory/default.nix
Default email 60f07311b9 Project import generated by Copybara.
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
2024-02-06 17:22:34 -08:00

42 lines
942 B
Nix

{ lib
, azure-common
, azure-mgmt-core
, buildPythonPackage
, fetchPypi
, isodate
, pythonOlder
}:
buildPythonPackage rec {
pname = "azure-mgmt-datafactory";
version = "5.0.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-WX/lFsU8qGg3Mg5bk+U0SBdR6cQpjtfmbX02Hr8uz7o=";
};
propagatedBuildInputs = [
isodate
azure-common
azure-mgmt-core
];
# has no tests
doCheck = false;
pythonImportsCheck = [
"azure.mgmt.datafactory"
];
meta = with lib; {
description = "This is the Microsoft Azure Data Factory Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-datafactory_${version}/sdk/datafactory/azure-mgmt-datafactory";
license = licenses.mit;
maintainers = with maintainers; [ maxwilson ];
};
}