summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-sugar/default.nix
blob: 2965d169599a8c2ef6deb55482c00446f7fde674 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, termcolor, pytest }:

buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "pytest-sugar";
  version = "0.9.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "11lni9kn0r1y896xg20qjv4yjcyr56h0hx9dprdgjnam4dqcl6lg";
  };

  propagatedBuildInputs = [ termcolor pytest ];

  meta = with stdenv.lib; {
    description = "A plugin that changes the default look and feel of py.test";
    homepage = https://github.com/Frozenball/pytest-sugar;
    license = licenses.bsd3;
  };
}