Files
nixpkgs/pkgs/development/python-modules/azure-synapse-artifacts/default.nix
2023-01-05 01:08:53 +01:00

35 lines
730 B
Nix

{ lib, buildPythonPackage, fetchPypi
, azure-common
, azure-core
, msrest
}:
buildPythonPackage rec {
pname = "azure-synapse-artifacts";
version = "0.14.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "sha256-Q1gGq7EZ/JvYjD7y0mp3kEy15QKZI84UQTdlIBoQLMs=";
};
propagatedBuildInputs = [
azure-common
azure-core
msrest
];
# zero tests run
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";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}