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

python3Packages.pytest-order: 0.10.0 -> 1.0.0
This commit is contained in:
Robert Schütz 2021-06-24 14:39:25 +02:00 committed by GitHub
commit ab3e6a7b37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,11 +10,11 @@
buildPythonPackage rec {
pname = "pytest-order";
version = "0.10.0";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "2da32cb95e63fac6972d34f5ddb53997fc66305355425be0f55f4092d666293d";
sha256 = "sha256-WZeiYrMSNO67Rh+anvJGh79zICm0mYRaQ5i2nttawyE=";
};
buildInputs = [ pytest ];
@ -28,7 +28,7 @@ buildPythonPackage rec {
meta = {
description = "Pytest plugin that allows you to customize the order in which your tests are run";
homepage = "https://github.com/mrbean-bremen/pytest-order";
homepage = "https://github.com/pytest-dev/pytest-order";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jacg ];
};