python.pkgs.pytest-sugar: init at 0.9.0
This commit is contained in:
parent
1089ccedb7
commit
bde5cde9c6
20
pkgs/development/python-modules/pytest-sugar/default.nix
Normal file
20
pkgs/development/python-modules/pytest-sugar/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -4444,6 +4444,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pytest-sugar = callPackage ../development/python-modules/pytest-sugar { };
|
||||||
|
|
||||||
tinycss = buildPythonPackage rec {
|
tinycss = buildPythonPackage rec {
|
||||||
name = "tinycss-${version}";
|
name = "tinycss-${version}";
|
||||||
version = "0.3";
|
version = "0.3";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user