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";
2021-08-21 19:56:03 +01:00
version = "0.4.1545";
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;
2021-08-21 19:56:03 +01:00
sha256 = "63e9b0527424c565303fe3d8ede1cd35d48a4ecf4afe72e1c12b0e90b9fdcd39";
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;
};
}