python3Packages.tubeup: 0.0.20 -> 0.0.21
This commit is contained in:
parent
a824dc6bdd
commit
c0e781d9ad
1 changed files with 4 additions and 4 deletions
|
@ -2,27 +2,27 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, internetarchive
|
, internetarchive
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, youtube-dlc
|
, youtube-dl
|
||||||
, docopt
|
, docopt
|
||||||
, isPy27
|
, isPy27
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "tubeup";
|
pname = "tubeup";
|
||||||
version = "0.0.20";
|
version = "0.0.21";
|
||||||
|
|
||||||
disabled = isPy27;
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "8bf4004629b8427173c8259e1a09065db99135d6cc390b70a8a67b52a34a3f67";
|
sha256 = "326a499be032bee7f7ed921d85abff4b3b4dcd2c3d6ad694f08ef98dbcef19b6";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace setup.py --replace "docopt==0.6.2" "docopt"
|
substituteInPlace setup.py --replace "docopt==0.6.2" "docopt"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [ internetarchive docopt youtube-dlc ];
|
propagatedBuildInputs = [ internetarchive docopt youtube-dl ];
|
||||||
|
|
||||||
pythonImportsCheck = [ "tubeup" ];
|
pythonImportsCheck = [ "tubeup" ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue