about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pytestcache/default.nix
blob: f2427991e3f243f56a55088e74d21b1e39c9f300 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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";
  };
}