nixpkgs/pkgs/development/python-modules/flaky/default.nix
Vladimír Čunát a95a53aadc
Revert "pythonPackages.flaky: 3.5.3 -> 3.6.1 (#68411)"
This reverts commit b44fca1702.
I'm moving this to the staging branch.
It's a huge rebuild (on the order of 20k jobs), and it seems like that
was not noticed, and I can't see sufficient motivation to skip ahead of
e.g. the CVE fixes we have in staging-next.
2019-09-16 19:23:20 +02:00

29 lines
577 B
Nix

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