about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-sugar/default.nix
blob: 2ff6f40e344855b2b659aca877cd1cdc5b9344d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, buildPythonPackage
, fetchPypi
, termcolor
, pytest
, packaging
}:

buildPythonPackage rec {
  pname = "pytest-sugar";
  version = "0.9.2";

  src = fetchPypi {
    inherit pname version;
    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 ];
  };
}