1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00

Merge pull request #266779 from r-ryantm/auto-update/python310Packages.pytest-testmon

python310Packages.pytest-testmon: 2.0.13 -> 2.1.0
This commit is contained in:
Nick Cao 2023-11-11 09:25:15 -05:00 committed by GitHub
commit 2c788cdf30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,16 +10,16 @@
buildPythonPackage rec {
pname = "pytest-testmon";
version = "2.0.13";
version = "2.1.0";
format = "pyproject";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "tarpas";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-WJ0Br8O7p5Zru4Fr9+adXp5qjR7sZxBZVtBJghecm9E=";
hash = "sha256-M4636yqzChRI37UdGPOZTjj8POLdrOoJtzmECtZZi4k=";
};
nativeBuildInputs = [
@ -45,7 +45,7 @@ buildPythonPackage rec {
description = "Pytest plug-in which automatically selects and re-executes only tests affected by recent changes";
homepage = "https://github.com/tarpas/pytest-testmon/";
changelog = "https://github.com/tarpas/pytest-testmon/releases/tag/v${version}";
license = licenses.agpl3Only;
license = licenses.mit;
maintainers = with maintainers; [ dmvianna ];
};
}