tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
animdl: unpin cssselect
Robert Schütz
8 months ago
9441c5dc
b66f0c45
+6
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
video
animdl
default.nix
+6
-3
pkgs/applications/video/animdl/default.nix
···
21
buildPythonApplication {
22
pname = "animdl";
23
version = "1.7.27";
24
-
format = "pyproject";
25
26
src = fetchFromGitHub {
27
owner = "justfoolingaround";
···
34
pythonRemoveDeps = [
35
"comtypes" # windows only
36
];
0
37
pythonRelaxDeps = [
0
38
"httpx"
39
"lxml"
40
"packaging"
···
45
"yarl"
46
];
47
48
-
nativeBuildInputs = [
49
poetry-core
50
];
51
-
propagatedBuildInputs = [
0
52
anchor-kr
53
anitopy
54
click
···
21
buildPythonApplication {
22
pname = "animdl";
23
version = "1.7.27";
24
+
pyproject = true;
25
26
src = fetchFromGitHub {
27
owner = "justfoolingaround";
···
34
pythonRemoveDeps = [
35
"comtypes" # windows only
36
];
37
+
38
pythonRelaxDeps = [
39
+
"cssselect"
40
"httpx"
41
"lxml"
42
"packaging"
···
47
"yarl"
48
];
49
50
+
build-system = [
51
poetry-core
52
];
53
+
54
+
dependencies = [
55
anchor-kr
56
anitopy
57
click