depot/third_party/nixpkgs/pkgs/development/python-modules/enrich/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

43 lines
836 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
setuptools-scm,
rich,
pytest-mock,
}:
buildPythonPackage rec {
pname = "enrich";
version = "1.2.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0a2ab0d2931dff8947012602d1234d2a3ee002d9a355b5d70be6bf5466008893";
};
buildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ rich ];
nativeCheckInputs = [
pytestCheckHook
pytest-mock
];
disabledTests = [
# console output order is racy
"test_rich_console_ex"
];
pythonImportsCheck = [ "enrich" ];
meta = with lib; {
description = "Enrich adds few missing features to the wonderful rich library";
homepage = "https://github.com/pycontribs/enrich";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}