Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pytest-random-order / default.nix
blob2b2b6624c0998670b4324060cce5de27ae6036c4
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , py
5 , pytest
6 , pytest-xdist
7 , pytestCheckHook
8 , pythonOlder
9 , setuptools
12 buildPythonPackage rec {
13   pname = "pytest-random-order";
14   version = "1.1.1";
15   pyproject = true;
17   disabled = pythonOlder "3.5";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-RHLX008fHF86NZxP/FwT7QZSMvMeyhnIhEwatAbnkIA=";
22   };
24   nativeBuildInputs = [
25     setuptools
26   ];
28   buildInputs = [
29     pytest
30   ];
32   nativeCheckInputs = [
33     py
34     pytest-xdist
35     pytestCheckHook
36   ];
38   pythonImportsCheck = [
39     "random_order"
40   ];
42   meta = with lib; {
43     homepage = "https://github.com/jbasko/pytest-random-order";
44     description = "Randomise the order of tests with some control over the randomness";
45     changelog = "https://github.com/jbasko/pytest-random-order/releases/tag/v${version}";
46     license = licenses.mit;
47     maintainers = with maintainers; [ prusnak ];
48   };