nixpkgs/pkgs/development/python-modules/pytest-sugar/default.nix

31 lines
596 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, termcolor
, pytest
, packaging
}:
buildPythonPackage rec {
pname = "pytest-sugar";
2018-11-11 13:47:27 +00:00
version = "0.9.2";
src = fetchPypi {
inherit pname version;
2018-11-11 13:47:27 +00:00
sha256 = "fcd87a74b2bce5386d244b49ad60549bfbc4602527797fac167da147983f58ab";
};
propagatedBuildInputs = [
termcolor
pytest
packaging
];
meta = with lib; {
description = "A plugin that changes the default look and feel of py.test";
homepage = https://github.com/Frozenball/pytest-sugar;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}