nixpkgs/pkgs/development/python-modules/azure-synapse-artifacts/default.nix

32 lines
703 B
Nix

{ lib, buildPythonPackage, fetchPypi
, azure-common
, azure-core
, msrest
}:
buildPythonPackage rec {
pname = "azure-synapse-artifacts";
version = "0.7.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "2a538d617dc5d2d167716226d0a24e416324efb35ef22b223e0d9fb6b9889a72";
};
propagatedBuildInputs = [
azure-common
azure-core
msrest
];
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 ];
};
}