nixpkgs/pkgs/tools/misc/you-get/default.nix
R. RyanTM bde996eaab you-get: 0.4.1040 -> 0.4.1060 (#39030)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/you-get/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/a7n7325307a14hwggdj0jzdj47182zma-you-get-0.4.1060/bin/.you-get-wrapped -h’ got 0 exit code
- ran ‘/nix/store/a7n7325307a14hwggdj0jzdj47182zma-you-get-0.4.1060/bin/.you-get-wrapped --help’ got 0 exit code
- ran ‘/nix/store/a7n7325307a14hwggdj0jzdj47182zma-you-get-0.4.1060/bin/you-get -h’ got 0 exit code
- ran ‘/nix/store/a7n7325307a14hwggdj0jzdj47182zma-you-get-0.4.1060/bin/you-get --help’ got 0 exit code
- found 0.4.1060 with grep in /nix/store/a7n7325307a14hwggdj0jzdj47182zma-you-get-0.4.1060
- directory tree listing: https://gist.github.com/d2773534e9b303789f531edc73f9eefb
2018-04-17 12:10:57 +02:00

24 lines
662 B
Nix

{ stdenv, buildPythonApplication, fetchPypi }:
buildPythonApplication rec {
pname = "you-get";
version = "0.4.1060";
# 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 = "1c4drn6khqrjvyzzsiaracnpcvahbiya6v5p18h2lyl7xia8gk51";
};
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;
};
}