pythonPackages.pytestcache: Move to own file

This commit is contained in:
Elis Hirwing
2018-03-31 21:28:02 +02:00
committed by Frederik Rietdijk
parent 8fab23d694
commit e805ce8d5c
2 changed files with 29 additions and 23 deletions

View File

@@ -0,0 +1,28 @@
{ stdenv, buildPythonPackage, fetchPypi
, pytest, execnet }:
buildPythonPackage rec {
pname = "pytest-cache";
version = "1.0";
src = fetchPypi {
inherit pname version;
sha256 = "1a873fihw4rhshc722j4h6j7g3nj7xpgsna9hhg3zn6ksknnhx5y";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ execnet ];
checkPhase = ''
py.test
'';
# Too many failing tests. Are they maintained?
doCheck = false;
meta = with stdenv.lib; {
license = licenses.mit;
homepage = https://pypi.python.org/pypi/pytest-cache/;
description = "pytest plugin with mechanisms for caching across test runs";
};
}