summary refs log tree commit diff
path: root/pkgs/tools/misc/you-get
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-01-26 04:05:32 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-01-26 04:05:32 +0100
commit1aa3efba39b9bd393fdbcf93da97333470af40d1 (patch)
treefb2edb65cbfde68ef3e68be0453e7a140fee0c92 /pkgs/tools/misc/you-get
parent0f5f904cdd7dd9b3b5b99517643e05a83b89a95f (diff)
you-get: 0.4.390 -> 0.4.1011
Diffstat (limited to 'pkgs/tools/misc/you-get')
-rw-r--r--pkgs/tools/misc/you-get/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/tools/misc/you-get/default.nix b/pkgs/tools/misc/you-get/default.nix
new file mode 100644
index 000000000000..3a917040863e
--- /dev/null
+++ b/pkgs/tools/misc/you-get/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildPythonApplication, fetchPypi }:
+
+buildPythonApplication rec {
+  pname = "you-get";
+  version = "0.4.1011";
+
+  # 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;
+    sha256 = "0h6aspnfic30s89xsv6qss1jfka9px4ll60bqrjbds4y0k3h818g";
+  };
+
+  meta = with stdenv.lib; {
+    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;
+  };
+}