2019-05-07 14:54:31 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, termcolor
|
|
|
|
, pytest
|
|
|
|
, packaging
|
|
|
|
}:
|
2017-09-05 11:16:41 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-sugar";
|
2018-11-11 14:47:27 +01:00
|
|
|
version = "0.9.2";
|
2017-09-05 11:16:41 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-11 14:47:27 +01:00
|
|
|
sha256 = "fcd87a74b2bce5386d244b49ad60549bfbc4602527797fac167da147983f58ab";
|
2017-09-05 11:16:41 +02:00
|
|
|
};
|
|
|
|
|
2019-05-07 14:54:31 +02:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
termcolor
|
|
|
|
pytest
|
|
|
|
packaging
|
|
|
|
];
|
2017-09-05 11:16:41 +02:00
|
|
|
|
2019-05-07 14:54:31 +02:00
|
|
|
meta = with lib; {
|
2017-09-05 11:16:41 +02:00
|
|
|
description = "A plugin that changes the default look and feel of py.test";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/Frozenball/pytest-sugar";
|
2017-09-05 11:16:41 +02:00
|
|
|
license = licenses.bsd3;
|
2019-05-07 14:54:31 +02:00
|
|
|
maintainers = [ maintainers.costrouc ];
|
2017-09-05 11:16:41 +02:00
|
|
|
};
|
|
|
|
}
|