summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-10-16 09:28:43 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-10-16 09:28:43 +0200
commita09e24f6bea0b1f31f9919a8a3d5b024bfec9e60 (patch)
tree7e39791a2ea6fad4d261bb06fcfb277658d0ad52 /pkgs/applications/graphics
parentfab6d13fe1287005f0e7f874d827b733372e72db (diff)
downloadnixpkgs-a09e24f6bea0b1f31f9919a8a3d5b024bfec9e60.tar
nixpkgs-a09e24f6bea0b1f31f9919a8a3d5b024bfec9e60.tar.gz
nixpkgs-a09e24f6bea0b1f31f9919a8a3d5b024bfec9e60.tar.bz2
nixpkgs-a09e24f6bea0b1f31f9919a8a3d5b024bfec9e60.tar.lz
nixpkgs-a09e24f6bea0b1f31f9919a8a3d5b024bfec9e60.tar.xz
nixpkgs-a09e24f6bea0b1f31f9919a8a3d5b024bfec9e60.tar.zst
nixpkgs-a09e24f6bea0b1f31f9919a8a3d5b024bfec9e60.zip
hydrus: fix package name
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/hydrus/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/hydrus/default.nix b/pkgs/applications/graphics/hydrus/default.nix
index 9c80ed6f086..018d6bf0b7b 100644
--- a/pkgs/applications/graphics/hydrus/default.nix
+++ b/pkgs/applications/graphics/hydrus/default.nix
@@ -17,7 +17,7 @@ python3Packages.buildPythonPackage rec {
     owner = "hydrusnetwork";
     repo = "hydrus";
     rev = "refs/tags/v${version}";
-    sha256 = "sha256-GmYjf2r5dyxkPWTmypChKbkeifCMFKi1lzRhPNe7Ckw=";
+    hash = "sha256-GmYjf2r5dyxkPWTmypChKbkeifCMFKi1lzRhPNe7Ckw=";
   };
 
   nativeBuildInputs = [
@@ -30,7 +30,6 @@ python3Packages.buildPythonPackage rec {
     cbor2
     chardet
     cloudscraper
-    dateutil
     html5lib
     lxml
     lz4
@@ -42,6 +41,7 @@ python3Packages.buildPythonPackage rec {
     pyopenssl
     pyside2
     pysocks
+    python-dateutil
     python3Packages.mpv
     pyyaml
     qtpy
@@ -52,7 +52,11 @@ python3Packages.buildPythonPackage rec {
     twisted
   ];
 
-  checkInputs = with python3Packages; [ nose mock httmock ];
+  checkInputs = with python3Packages; [
+    nose
+    mock
+    httmock
+  ];
 
   # most tests are failing, presumably because we are not using test.py
   checkPhase = ''