cum: init at 0.9.1

gstqt5
Tadeo Kondrak 2019-06-18 21:21:12 -06:00
parent ba16a39aa4
commit 6c167ab85a
No known key found for this signature in database
GPG Key ID: C4654C621CD5277C
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ stdenv, python3Packages }:
with python3Packages;
buildPythonApplication rec {
pname = "cum";
version = "0.9.1";
src = fetchPypi {
inherit pname version;
sha256 = "15qc6agka2g3kcnpnz0hbjic1s3260cr9bda0rlcyninxs1vndq0";
};
propagatedBuildInputs = [
alembic beautifulsoup4 click natsort requests sqlalchemy
];
# tests seem to fail for `config` not being defined,
# but it works once installed
doCheck = false;
# remove the top-level `tests` and `LICENSE` file
# they should not be installed, and there can be issues if another package
# has a collision (especially with the license file)
postInstall = ''
rm -rf $out/tests $out/LICENSE
'';
meta = with stdenv.lib; {
description = "comic updater, mangafied";
homepage = "https://github.com/Hamuko/cum";
license = licenses.asl20;
maintainers = with maintainers; [ tadeokondrak ];
platforms = platforms.all;
};
}

View File

@ -17246,6 +17246,8 @@ in
cubicsdr = callPackage ../applications/radio/cubicsdr { wxGTK = wxGTK31; };
cum = callPackage ../applications/misc/cum { };
cuneiform = callPackage ../tools/graphics/cuneiform {};
curseradio = callPackage ../applications/audio/curseradio { };