depot/third_party/nixpkgs/pkgs/development/python-modules/pytestcache/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

33 lines
633 B
Nix

{
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";
};
}