blob: e840f9e56da9909eccdda9a85e7779fdb6b67f21 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
{ lib
, fetchFromGitHub
, ffmpeg
, fzf
, mpv
, python3
}:
let
pname = "mov-cli";
version = "4.4.8";
in
python3.pkgs.buildPythonPackage {
inherit pname version;
pyproject = true;
src = fetchFromGitHub {
owner = "mov-cli";
repo = "mov-cli";
rev = "refs/tags/${version}";
hash = "sha256-MpSwSYsHsrG7ceXXJnFMg1bgadOhe23eNVCNMxlY0pQ=";
};
propagatedBuildInputs = with python3.pkgs; [
beautifulsoup4
click
colorama
deprecation
httpx
inquirer
krfzf-py
lxml
poetry-core
pycrypto
python-decouple
setuptools
six
thefuzz
tldextract
toml
typer
unidecode
(callPackage ./mov-cli-test.nix {})
];
pythonRelaxDeps = [
"httpx"
"tldextract"
];
makeWrapperArgs = let
binPath = lib.makeBinPath [
ffmpeg
fzf
mpv
];
in [
"--prefix PATH : ${binPath}"
];
meta = with lib; {
homepage = "https://github.com/mov-cli/mov-cli";
description = "Cli tool to browse and watch movies";
license = with lib.licenses; [ gpl3Only ];
mainProgram = "mov-cli";
maintainers = with lib.maintainers; [ baitinq ];
};
}
|