lol

Merge pull request #301837 from Luflosi/update/python3Packages.pytest-order

python3Packages.pytest-order: 1.2.0 -> 1.2.1

authored by

Mario Rodas and committed by
GitHub
2f93f740 4590d4dc

+7 -5
+7 -5
pkgs/development/python-modules/pytest-order/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pytest-order"; 13 - version = "1.2.0"; 13 + version = "1.2.1"; 14 14 format = "setuptools"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-lE+GttRBqnsdqA+AHGq2W4S766Ry0KehLrQ7omZQEBo="; 18 + hash = "sha256-RFG9iCG6T6IQlFWi/MiCr2DvjlPgnSRNZ2dL4I9W6sM="; 19 19 }; 20 20 21 21 buildInputs = [ pytest ]; ··· 27 27 pytest-mock 28 28 ]; 29 29 30 - meta = { 30 + strictDeps = true; 31 + 32 + meta = with lib; { 31 33 description = "Pytest plugin that allows you to customize the order in which your tests are run"; 32 34 homepage = "https://github.com/pytest-dev/pytest-order"; 33 - license = lib.licenses.mit; 34 - maintainers = [ lib.maintainers.jacg ]; 35 + license = licenses.mit; 36 + maintainers = with maintainers; [ jacg Luflosi ]; 35 37 }; 36 38 }