forked from mirrors/nixpkgs
Merge pull request #63498 from tadeokondrak/cum/init/0.9.1
cum: init at 0.9.1
This commit is contained in:
commit
7fd23d128b
36
pkgs/applications/misc/cum/default.nix
Normal file
36
pkgs/applications/misc/cum/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue