nixpkgs/pkgs/applications/graphics/hydrus/default.nix

113 lines
2.5 KiB
Nix
Raw Normal View History

{ lib
2020-10-18 18:48:54 +00:00
, fetchFromGitHub
2021-03-14 18:12:53 +00:00
, xz
2020-10-18 18:48:54 +00:00
, wrapQtAppsHook
, miniupnpc_2
, swftools
, pythonPackages
}:
2021-03-05 06:35:58 +00:00
pythonPackages.buildPythonPackage rec {
2020-10-18 18:48:54 +00:00
pname = "hydrus";
2021-05-05 23:58:38 +00:00
version = "438";
2020-10-18 18:48:54 +00:00
format = "other";
src = fetchFromGitHub {
owner = "hydrusnetwork";
repo = "hydrus";
2021-03-05 06:35:58 +00:00
rev = "v${version}";
2021-05-05 23:58:38 +00:00
sha256 = "sha256-iBJkbVUlsjt26SbDe92eIrWKQwWBhkjjeLM14Pm/obc=";
2020-10-18 18:48:54 +00:00
};
nativeBuildInputs = [
wrapQtAppsHook
];
propagatedBuildInputs = with pythonPackages; [
beautifulsoup4
html5lib
lxml
numpy
opencv4
pillow
psutil
pyopenssl
pyyaml
requests
send2trash
service-identity
twisted
lz4
2021-03-14 18:12:53 +00:00
xz
2020-10-18 18:48:54 +00:00
pysocks
matplotlib
qtpy
pyside2
2021-03-05 06:35:58 +00:00
mpv
2020-10-18 18:48:54 +00:00
];
checkInputs = with pythonPackages; [ nose httmock ];
# most tests are failing, presumably because we are not using test.py
checkPhase = ''
nosetests $src/hydrus/test \
-e TestClientAPI \
-e TestClientConstants \
-e TestClientDaemons \
-e TestClientData \
-e TestClientDB \
-e TestClientDBDuplicates \
-e TestClientDBTags \
-e TestClientImageHandling \
-e TestClientImportOptions \
-e TestClientListBoxes \
-e TestClientMigration \
-e TestClientNetworking \
-e TestClientTags \
-e TestClientThreading \
-e TestDialogs \
-e TestFunctions \
-e TestHydrusNATPunch \
-e TestHydrusSerialisable \
-e TestHydrusServer \
-e TestHydrusSessions \
-e TestServer \
'';
2021-04-12 15:36:15 +00:00
outputs = [ "out" "doc" ];
2020-10-18 18:48:54 +00:00
postPatch = ''
sed 's;os\.path\.join(\sHC\.BIN_DIR,.*;"${miniupnpc_2}/bin/upnpc";' \
2021-04-12 15:36:15 +00:00
-i ./hydrus/core/networking/HydrusNATPunch.py
2020-10-18 18:48:54 +00:00
sed 's;os\.path\.join(\sHC\.BIN_DIR,.*;"${swftools}/bin/swfrender";' \
-i ./hydrus/core/HydrusFlashHandling.py
'';
#doCheck = true;
installPhase = ''
# Move the hydrus module and related directories
mkdir -p $out/${pythonPackages.python.sitePackages}
mv {hydrus,static} $out/${pythonPackages.python.sitePackages}
mv help $out/doc/
# install the hydrus binaries
mkdir -p $out/bin
install -m0755 server.py $out/bin/hydrus-server
install -m0755 client.py $out/bin/hydrus-client
'';
dontWrapQtApps = true;
preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
'';
meta = with lib; {
2020-10-18 18:48:54 +00:00
description = "Danbooru-like image tagging and searching system for the desktop";
license = licenses.wtfpl;
homepage = "https://hydrusnetwork.github.io/hydrus/";
maintainers = [ maintainers.evanjs ];
};
}