Merge pull request #34280 from dotlambda/you-get

you-get: 0.4.390 -> 0.4.1011

authored by Jörg Thalheim and committed by GitHub d5514b47 df54d823

+25 -25
+23
pkgs/tools/misc/you-get/default.nix
··· 1 + { stdenv, buildPythonApplication, fetchPypi }: 2 + 3 + buildPythonApplication rec { 4 + pname = "you-get"; 5 + version = "0.4.1011"; 6 + 7 + # Tests aren't packaged, but they all hit the real network so 8 + # probably aren't suitable for a build environment anyway. 9 + doCheck = false; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + sha256 = "0h6aspnfic30s89xsv6qss1jfka9px4ll60bqrjbds4y0k3h818g"; 14 + }; 15 + 16 + meta = with stdenv.lib; { 17 + description = "A tiny command line utility to download media contents from the web"; 18 + homepage = https://you-get.org; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ ryneeverett ]; 21 + platforms = platforms.all; 22 + }; 23 + }
+2 -2
pkgs/top-level/all-packages.nix
··· 5460 5460 5461 5461 yle-dl = callPackage ../tools/misc/yle-dl {}; 5462 5462 5463 + you-get = python3Packages.callPackage ../tools/misc/you-get { }; 5464 + 5463 5465 zbackup = callPackage ../tools/backup/zbackup {}; 5464 5466 5465 5467 zbar = callPackage ../tools/graphics/zbar { }; ··· 18029 18031 inherit (gnome3) yelp; 18030 18032 18031 18033 yoshimi = callPackage ../applications/audio/yoshimi { }; 18032 - 18033 - inherit (python3Packages) you-get; 18034 18034 18035 18035 inherit (pythonPackages) youtube-dl; 18036 18036
-23
pkgs/top-level/python-packages.nix
··· 18730 18730 }; 18731 18731 }; 18732 18732 18733 - you-get = buildPythonApplication rec { 18734 - version = "0.4.390"; 18735 - name = "you-get-${version}"; 18736 - disabled = !isPy3k; 18737 - 18738 - # Tests aren't packaged, but they all hit the real network so 18739 - # probably aren't suitable for a build environment anyway. 18740 - doCheck = false; 18741 - 18742 - src = pkgs.fetchurl { 18743 - url = "mirror://pypi/y/you-get/${name}.tar.gz"; 18744 - sha256 = "17hs0g9yvgvkmr7p1cz39mbbvb40q65qkc31j3ixc2f873gahagw"; 18745 - }; 18746 - 18747 - meta = { 18748 - description = "A tiny command line utility to download media contents from the web"; 18749 - homepage = https://you-get.org; 18750 - license = licenses.mit; 18751 - maintainers = with maintainers; [ ryneeverett ]; 18752 - platforms = platforms.all; 18753 - }; 18754 - }; 18755 - 18756 18733 zetup = callPackage ../development/python-modules/zetup { }; 18757 18734 18758 18735 zope_broken = buildPythonPackage rec {