about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/flaky/default.nix
blob: 523e6ac53e6bb0a4aa32a0f943f34ca12c290eb9 (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
, mock
, pytest
}:

buildPythonPackage rec {
  pname = "flaky";
  version = "3.5.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "12bd5e41f372b2190e8d754b6e5829c2f11dbc764e10b30f57e59f829c9ca1da";
  };

  buildInputs = [ mock pytest ];

  # waiting for feedback https://github.com/box/flaky/issues/97
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = https://github.com/box/flaky;
    description = "Plugin for nose or py.test that automatically reruns flaky tests";
    license = licenses.asl20;
  };

}