Merge pull request #34738 from dotlambda/pytest-sugar

pythonPackages.pytest-sugar: 0.9.0 -> 0.9.1
This commit is contained in:
Jörg Thalheim 2018-02-09 08:06:29 +00:00 committed by GitHub
commit 58278aec16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, termcolor, pytest }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pytest-sugar";
version = "0.9.0";
version = "0.9.1";
src = fetchPypi {
inherit pname version;
sha256 = "11lni9kn0r1y896xg20qjv4yjcyr56h0hx9dprdgjnam4dqcl6lg";
sha256 = "ab8cc42faf121344a4e9b13f39a51257f26f410e416c52ea11078cdd00d98a2c";
};
propagatedBuildInputs = [ termcolor pytest ];
checkPhase = ''
py.test
'';
meta = with stdenv.lib; {
description = "A plugin that changes the default look and feel of py.test";
homepage = https://github.com/Frozenball/pytest-sugar;