summary refs log tree commit diff
path: root/pkgs/applications/graphics/hydrus/default.nix
diff options
context:
space:
mode:
authormingmingrr <mingmingrr@gmail.com>2021-03-05 01:35:58 -0500
committermingmingrr <mingmingrr@gmail.com>2021-03-10 16:12:38 -0500
commitfea9710ec271c818e6feb2a47cb51c3bc7b04815 (patch)
tree4c97567364db4fa9261331db20f302ce2761c3aa /pkgs/applications/graphics/hydrus/default.nix
parent2c0e6a0e69af6c9a132f93d8500d50606e074f1f (diff)
downloadnixpkgs-fea9710ec271c818e6feb2a47cb51c3bc7b04815.tar
nixpkgs-fea9710ec271c818e6feb2a47cb51c3bc7b04815.tar.gz
nixpkgs-fea9710ec271c818e6feb2a47cb51c3bc7b04815.tar.bz2
nixpkgs-fea9710ec271c818e6feb2a47cb51c3bc7b04815.tar.lz
nixpkgs-fea9710ec271c818e6feb2a47cb51c3bc7b04815.tar.xz
nixpkgs-fea9710ec271c818e6feb2a47cb51c3bc7b04815.tar.zst
nixpkgs-fea9710ec271c818e6feb2a47cb51c3bc7b04815.zip
pythonPackages.hydrus: 426 -> 431
Diffstat (limited to 'pkgs/applications/graphics/hydrus/default.nix')
-rw-r--r--pkgs/applications/graphics/hydrus/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/graphics/hydrus/default.nix b/pkgs/applications/graphics/hydrus/default.nix
index f5b8b806215..365dbb66b65 100644
--- a/pkgs/applications/graphics/hydrus/default.nix
+++ b/pkgs/applications/graphics/hydrus/default.nix
@@ -8,16 +8,16 @@
 , pythonPackages
 }:
 
-pythonPackages.buildPythonPackage {
+pythonPackages.buildPythonPackage rec {
   pname = "hydrus";
-  version = "426";
+  version = "431";
   format = "other";
 
   src = fetchFromGitHub {
     owner = "hydrusnetwork";
     repo = "hydrus";
-    rev = "1acdc258e5bb2ae22f5eafaf3dac8d9265dba5e2";
-    sha256 = "1snihd433hx36s6d5hsnq4qg0xs6ag4822lwm5fqak64n22ad2qb";
+    rev = "v${version}";
+    sha256 = "0mfql27n725k6ynvhkgzmxxpfbjlzil2fjpy082gz257kb0880zy";
   };
 
   nativeBuildInputs = [
@@ -44,6 +44,7 @@ pythonPackages.buildPythonPackage {
     matplotlib
     qtpy
     pyside2
+    mpv
   ];
 
   checkInputs = with pythonPackages; [ nose httmock ];