My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pytestcache/default.nix

28 lines
623 B

{ lib, 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 lib; {
license = licenses.mit;
homepage = "https://pypi.python.org/pypi/pytest-cache/";
description = "pytest plugin with mechanisms for caching across test runs";
};
}