mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
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 {
|
||||
name = "tinycss-${version}";
|
||||
version = "0.3";
|
||||
|
Loading…
Reference in New Issue
Block a user