1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/applications/graphics/hydrus/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

118 lines
2.9 KiB
Nix
Raw Normal View History

{ lib
2020-10-18 14:48:54 -04:00
, fetchFromGitHub
, wrapQtAppsHook
, miniupnpc_2
, ffmpeg
2021-06-01 12:42:04 -04:00
, enableSwftools ? false
2020-10-18 14:48:54 -04:00
, swftools
, python3Packages
2020-10-18 14:48:54 -04:00
}:
python3Packages.buildPythonPackage rec {
2020-10-18 14:48:54 -04:00
pname = "hydrus";
2022-05-05 02:03:22 -04:00
version = "483";
2020-10-18 14:48:54 -04:00
format = "other";
src = fetchFromGitHub {
owner = "hydrusnetwork";
repo = "hydrus";
2022-04-16 00:54:01 -04:00
rev = "refs/tags/v${version}";
2022-05-05 02:03:22 -04:00
sha256 = "sha256-UU3XQ0NC/apJ0S/uDDNG+8DOD+sRyX98yMcjtL2Htig=";
2020-10-18 14:48:54 -04:00
};
nativeBuildInputs = [
wrapQtAppsHook
2022-03-02 18:32:30 -05:00
python3Packages.mkdocs-material
2020-10-18 14:48:54 -04:00
];
propagatedBuildInputs = with python3Packages; [
2020-10-18 14:48:54 -04:00
beautifulsoup4
2022-03-24 09:58:27 -04:00
cbor2
chardet
cloudscraper
2020-10-18 14:48:54 -04:00
html5lib
lxml
lz4
nose
2020-10-18 14:48:54 -04:00
numpy
opencv4
pillow
psutil
pylzma
2020-10-18 14:48:54 -04:00
pyopenssl
pyside2
pysocks
pythonPackages.mpv
2020-10-18 14:48:54 -04:00
pyyaml
qtpy
2020-10-18 14:48:54 -04:00
requests
send2trash
service-identity
six
2020-10-18 14:48:54 -04:00
twisted
];
checkInputs = with python3Packages; [ nose mock httmock ];
2020-10-18 14:48:54 -04:00
# 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 \
2021-10-01 17:19:51 -04:00
-e TestHydrusNetwork \
2020-10-18 14:48:54 -04:00
-e TestHydrusNATPunch \
-e TestHydrusSerialisable \
-e TestHydrusServer \
-e TestHydrusSessions \
-e TestServer \
'';
2021-04-12 11:36:15 -04:00
outputs = [ "out" "doc" ];
2020-10-18 14:48:54 -04:00
installPhase = ''
# Move the hydrus module and related directories
mkdir -p $out/${python3Packages.python.sitePackages}
mv {hydrus,static} $out/${python3Packages.python.sitePackages}
2022-03-02 18:32:30 -05:00
mkdocs build -d help
2020-10-18 14:48:54 -04:00
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
'' + lib.optionalString enableSwftools ''
mkdir -p $out/${python3Packages.python.sitePackages}/bin
# swfrender seems to have to be called sfwrender_linux
# not sure if it can be loaded through PATH, but this is simpler
# $out/python3Packages.python.sitePackages/bin is correct NOT .../hydrus/bin
ln -s ${swftools}/bin/swfrender $out/${python3Packages.python.sitePackages}/bin/swfrender_linux
2020-10-18 14:48:54 -04:00
'';
dontWrapQtApps = true;
preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
makeWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ ffmpeg miniupnpc_2 ]})
2020-10-18 14:48:54 -04:00
'';
meta = with lib; {
2020-10-18 14:48:54 -04:00
description = "Danbooru-like image tagging and searching system for the desktop";
license = licenses.wtfpl;
homepage = "https://hydrusnetwork.github.io/hydrus/";
2021-07-23 12:44:56 -04:00
maintainers = with maintainers; [ dandellion evanjs ];
2020-10-18 14:48:54 -04:00
};
}