summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-11-11 09:25:15 -0500
committerGitHub <noreply@github.com>2023-11-11 09:25:15 -0500
commit2c788cdf30ec0d107a99b6081d732dd682ba8f75 (patch)
tree2d00d406bcfd0bf44204e245884f00071bb09f75 /pkgs
parent8a4dbe781bc5ebfe9406114a2e84e5b17727bbe4 (diff)
parent0b4517b48e7ae7c83e1477cdbfbd6da2327d4210 (diff)
downloadnixpkgs-2c788cdf30ec0d107a99b6081d732dd682ba8f75.tar
nixpkgs-2c788cdf30ec0d107a99b6081d732dd682ba8f75.tar.gz
nixpkgs-2c788cdf30ec0d107a99b6081d732dd682ba8f75.tar.bz2
nixpkgs-2c788cdf30ec0d107a99b6081d732dd682ba8f75.tar.lz
nixpkgs-2c788cdf30ec0d107a99b6081d732dd682ba8f75.tar.xz
nixpkgs-2c788cdf30ec0d107a99b6081d732dd682ba8f75.tar.zst
nixpkgs-2c788cdf30ec0d107a99b6081d732dd682ba8f75.zip
Merge pull request #266779 from r-ryantm/auto-update/python310Packages.pytest-testmon
python310Packages.pytest-testmon: 2.0.13 -> 2.1.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pytest-testmon/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/pytest-testmon/default.nix b/pkgs/development/python-modules/pytest-testmon/default.nix
index 28f45c02dd8..3c0b0ec629b 100644
--- a/pkgs/development/python-modules/pytest-testmon/default.nix
+++ b/pkgs/development/python-modules/pytest-testmon/default.nix
@@ -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 ];
   };
 }