python3Packages.mps-youtube: 0.2.7.1 -> 0.2.8

This commit is contained in:
Jonathan Ringer 2019-08-08 16:05:54 -07:00
parent 0f85491892
commit d570b83bd2
1 changed files with 5 additions and 9 deletions

View File

@ -1,20 +1,17 @@
{ stdenv { lib, buildPythonPackage, fetchFromGitHub, isPy3k
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, pafy , pafy
}: }:
buildPythonPackage rec { buildPythonPackage rec {
name = "mps-youtube-${version}"; pname = "mps-youtube";
version = "0.2.7.1"; version = "0.2.8";
disabled = (!isPy3k); disabled = (!isPy3k);
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mps-youtube"; owner = "mps-youtube";
repo = "mps-youtube"; repo = "mps-youtube";
rev = "v${version}"; rev = "v${version}";
sha256 = "16zn5gwb3568w95lr21b88zkqlay61p1541sa9c3x69zpi8v0pys"; sha256 = "1w1jhw9rg3dx7vp97cwrk5fymipkcy2wrbl1jaa38ivcjhqg596y";
}; };
propagatedBuildInputs = [ pafy ]; propagatedBuildInputs = [ pafy ];
@ -29,11 +26,10 @@ buildPythonPackage rec {
export XDG_CONFIG_HOME=$(pwd)/check-phase export XDG_CONFIG_HOME=$(pwd)/check-phase
''; '';
meta = with stdenv.lib; { meta = with lib; {
description = "Terminal based YouTube player and downloader"; description = "Terminal based YouTube player and downloader";
homepage = https://github.com/np1/mps-youtube; homepage = https://github.com/np1/mps-youtube;
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ odi ]; maintainers = with maintainers; [ odi ];
}; };
} }