3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/pytest-sugar/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
665 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, termcolor
, pytest
, packaging
2020-07-07 13:18:23 +01:00
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-sugar";
version = "0.9.5";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-7qeLbxW2NSd9PZAoDNOG2P7qHKsPm+dZR6Ym6LArR30=";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [
termcolor
packaging
];
2020-07-07 13:18:23 +01:00
checkInputs = [
pytestCheckHook
];
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 ];
};
}