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