Merge pull request #15150 from ryneeverett/you-get-init

you-get: init at 0.4.390
This commit is contained in:
Joachim Fasting 2016-05-02 08:38:06 +02:00
commit 4054bf05ad
3 changed files with 26 additions and 0 deletions

View file

@ -316,6 +316,7 @@
ryanartecona = "Ryan Artecona <ryanartecona@gmail.com>";
ryantm = "Ryan Mulligan <ryan@ryantm.com>";
rycee = "Robert Helgesson <robert@rycee.net>";
ryneeverett = "Ryne Everett <ryneeverett@gmail.com>";
samuelrivas = "Samuel Rivas <samuelrivas@gmail.com>";
sander = "Sander van der Burg <s.vanderburg@tudelft.nl>";
schmitthenner = "Fabian Schmitthenner <development@schmitthenner.eu>";

View file

@ -14657,6 +14657,8 @@ in
inherit (gnome3) yelp;
inherit (python3Packages) you-get;
inherit (pythonPackages) youtube-dl;
qgis = callPackage ../applications/gis/qgis {};

View file

@ -23268,6 +23268,29 @@ in modules // {
};
};
you-get = buildPythonApplication rec {
version = "0.4.390";
name = "you-get-${version}";
disabled = !isPy3k;
# Tests aren't packaged, but they all hit the real network so
# probably aren't suitable for a build environment anyway.
doCheck = false;
src = pkgs.fetchurl {
url = "mirror://pypi/y/you-get/${name}.tar.gz";
sha256 = "17hs0g9yvgvkmr7p1cz39mbbvb40q65qkc31j3ixc2f873gahagw";
};
meta = {
description = "A tiny command line utility to download media contents from the web";
homepage = https://you-get.org;
license = licenses.mit;
maintainers = with maintainers; [ ryneeverett ];
platforms = platforms.all;
};
};
zope_broken = buildPythonPackage rec {
name = "zope.broken-3.6.0";