3
0
Fork 0
forked from mirrors/nixpkgs

python.pkgs.pytest-sugar: init at 0.9.0

This commit is contained in:
Jörg Thalheim 2017-08-27 15:32:58 +01:00 committed by Frederik Rietdijk
parent 1089ccedb7
commit bde5cde9c6
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,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 = lib.licenses.bsd3;
};
}

View file

@ -4444,6 +4444,8 @@ in {
};
};
pytest-sugar = callPackage ../development/python-modules/pytest-sugar { };
tinycss = buildPythonPackage rec {
name = "tinycss-${version}";
version = "0.3";