tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.tubeup: fix dependencies
Matt Melling
4 years ago
9f8c7459
12219037
+5
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
tubeup
default.nix
+5
-3
pkgs/development/python-modules/tubeup/default.nix
···
2
2
, buildPythonPackage
3
3
, internetarchive
4
4
, fetchPypi
5
5
-
, youtube-dl
5
5
+
, yt-dlp
6
6
, docopt
7
7
, isPy27
8
8
}:
···
19
19
};
20
20
21
21
postPatch = ''
22
22
-
substituteInPlace setup.py --replace "docopt==0.6.2" "docopt"
22
22
+
substituteInPlace setup.py \
23
23
+
--replace "docopt==0.6.2" "docopt" \
24
24
+
--replace "internetarchive==2.0.3" "internetarchive"
23
25
'';
24
26
25
25
-
propagatedBuildInputs = [ internetarchive docopt youtube-dl ];
27
27
+
propagatedBuildInputs = [ internetarchive docopt yt-dlp ];
26
28
27
29
pythonImportsCheck = [ "tubeup" ];
28
30