Merge pull request #100479 from rnhmjoj/tremc

tremc: 0.9.1 -> 0.9.2
gstqt5
Michele Guerini Rocco 2020-10-14 17:06:24 +02:00 committed by GitHub
commit b5e44d3d15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -10,15 +10,15 @@ let
optional stdenv.isDarwin pbcopy
);
in
python3Packages.buildPythonPackage rec {
version = "0.9.1";
python3Packages.buildPythonApplication rec {
pname = "tremc";
version = "0.9.2";
src = fetchFromGitHub {
owner = "tremc";
repo = pname;
rev = "0.9.1";
sha256 = "1yhwvlcyv1s830p5a7q5x3mkb3mbvr5cn5nh7y62l5b6iyyynlvm";
rev = version;
sha256 = "1fqspp2ckafplahgba54xmx0sjidx1pdzyjaqjhz0ivh98dkx2n5";
};
buildInputs = with python3Packages; [
@ -44,6 +44,6 @@ python3Packages.buildPythonPackage rec {
meta = with stdenv.lib; {
description = "Curses interface for transmission";
homepage = "https://github.com/tremc/tremc";
license = licenses.gpl3;
license = licenses.gpl3Plus;
};
}