linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pytest-random-order / default.nix
blobd95af8651f343b4e9c3ccb2b9e88050e8c5b9389
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , pytest
6 }:
8 buildPythonPackage rec {
9   version = "1.0.4";
10   pname = "pytest-random-order";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "6b2159342a4c8c10855bc4fc6d65ee890fc614cb2b4ff688979b008a82a0ff52";
15   };
17   disabled = pythonOlder "3.5";
19   buildInputs = [ pytest ];
21   meta = with lib; {
22     homepage = "https://github.com/jbasko/pytest-random-order";
23     description = "Randomise the order of tests with some control over the randomness";
24     license = licenses.mit;
25     maintainers = [ maintainers.prusnak ];
26   };