nixpkgs/pkgs/tools/misc/you-get/default.nix

24 lines
666 B
Nix
Raw Normal View History

{ lib, buildPythonApplication, fetchPypi }:
2018-01-26 03:05:32 +00:00
buildPythonApplication rec {
pname = "you-get";
2020-12-27 03:35:40 +00:00
version = "0.4.1500";
2018-01-26 03:05:32 +00:00
# Tests aren't packaged, but they all hit the real network so
# probably aren't suitable for a build environment anyway.
doCheck = false;
src = fetchPypi {
inherit pname version;
2020-12-27 03:35:40 +00:00
sha256 = "5a6cc0d661fe0cd4210bf467d6c89afd8611609e402690254722c1415736da92";
2018-01-26 03:05:32 +00:00
};
meta = with lib; {
2018-01-26 03:05:32 +00:00
description = "A tiny command line utility to download media contents from the web";
2020-03-10 02:57:43 +00:00
homepage = "https://you-get.org";
2018-01-26 03:05:32 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ryneeverett ];
platforms = platforms.all;
};
}