depot/third_party/nixpkgs/pkgs/development/python-modules/azure-synapse-artifacts/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

43 lines
978 B
Nix

{
lib,
azure-common,
azure-core,
azure-mgmt-core,
buildPythonPackage,
fetchPypi,
isodate,
pythonOlder,
}:
buildPythonPackage rec {
pname = "azure-synapse-artifacts";
version = "0.19.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-UvCSsiZ315IoDwvMI02JLJ9zjpPI4Ut0wZUQG5uicYQ=";
};
propagatedBuildInputs = [
azure-common
azure-core
azure-mgmt-core
isodate
];
# Tests are only available in mono-repo
doCheck = false;
pythonImportsCheck = [ "azure.synapse.artifacts" ];
meta = with lib; {
description = "Microsoft Azure Synapse Artifacts Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-synapse-artifacts_${version}/sdk/synapse/azure-synapse-artifacts/CHANGELOG.md";
license = licenses.mit;
maintainers = [ ];
};
}