aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/pytest-randomly/default.nix
blob: c4523ac728c6f5eb2de41f6cb3b0e89c7d752961 (plain)
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
29
30
31
{ lib, buildPythonPackage, fetchPypi, isPy27
, factory_boy, faker, numpy
, pytest, pytest_xdist
}:

buildPythonPackage rec {
  pname = "pytest-randomly";
  version = "3.4.1";

  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "0s9cx692cdchfrjqx7fgf9wnm3fdac211a4hjq1cx9qqnbpdpl2z";
  };

  propagatedBuildInputs = [ numpy factory_boy faker ];

  checkInputs = [ pytest pytest_xdist ];

  # test warnings are fixed on an unreleased version:
  # https://github.com/pytest-dev/pytest-randomly/pull/281
  checkPhase = "pytest -p no:randomly";

  meta = with lib; {
    description = "Pytest plugin to randomly order tests and control random.seed";
    homepage = "https://github.com/pytest-dev/pytest-randomly";
    license = licenses.bsd3;
    maintainers = [ maintainers.sternenseemann ];
  };
}