summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2023-11-13 09:43:56 +0000
committerAaron Jheng <wentworth@outlook.com>2023-11-13 09:43:56 +0000
commit73a65850e012de139fe30611436c98f6f8090e9d (patch)
tree3e7a6efc2e57395d4e6201c550baf08ac04d4630
parent5d50cc4fd51502cfec4c349d91b02600dfcc7654 (diff)
svtplay-dl: use nose3 for Python 3.11
-rw-r--r--pkgs/tools/misc/svtplay-dl/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/svtplay-dl/default.nix b/pkgs/tools/misc/svtplay-dl/default.nix
index 04503b29e31a..5f7b29ded042 100644
--- a/pkgs/tools/misc/svtplay-dl/default.nix
+++ b/pkgs/tools/misc/svtplay-dl/default.nix
@@ -12,7 +12,7 @@
let
inherit (python3Packages)
- python pytest nose cryptography pyyaml requests mock requests-mock
+ python pytest nose3 cryptography pyyaml requests mock requests-mock
python-dateutil setuptools;
version = "4.28.1";
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
pythonPaths = [ cryptography pyyaml requests ];
buildInputs = [ python perl python-dateutil setuptools ] ++ pythonPaths;
nativeBuildInputs = [ gitMinimal zip makeWrapper ];
- nativeCheckInputs = [ nose pytest mock requests-mock ];
+ nativeCheckInputs = [ nose3 pytest mock requests-mock ];
postPatch = ''
substituteInPlace scripts/run-tests.sh \