1{ lib
2, buildPythonPackage
3, fetchPypi
4, termcolor
5, pytest
6, packaging
7}:
8
9buildPythonPackage rec {
10 pname = "pytest-sugar";
11 version = "0.9.2";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "fcd87a74b2bce5386d244b49ad60549bfbc4602527797fac167da147983f58ab";
16 };
17
18 propagatedBuildInputs = [
19 termcolor
20 pytest
21 packaging
22 ];
23
24 meta = with lib; {
25 description = "A plugin that changes the default look and feel of py.test";
26 homepage = https://github.com/Frozenball/pytest-sugar;
27 license = licenses.bsd3;
28 maintainers = [ maintainers.costrouc ];
29 };
30}