Files
2025-08-23 16:43:36 +02:00

41 lines
777 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
termcolor,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pytest-sugar";
version = "1.1.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-c7i2UWPr8Q+fZx76ue7T1W8g0spovag/pkdAqSwI9l0=";
};
build-system = [
setuptools
];
dependencies = [
termcolor
];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Plugin that changes the default look and feel of pytest";
homepage = "https://github.com/Frozenball/pytest-sugar";
changelog = "https://github.com/Teemu/pytest-sugar/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = [ ];
};
}