osc: 1.3.1 -> 1.6.1

Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
This commit is contained in:
Sascha Grunert 2024-04-10 13:00:09 +02:00
parent 5cb7527b4a
commit 5f599df38e
No known key found for this signature in database
GPG Key ID: 09D97D153EF94D93

View File

@ -12,14 +12,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "osc"; pname = "osc";
version = "1.3.1"; version = "1.6.1";
format = "setuptools"; format = "setuptools";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "openSUSE"; owner = "openSUSE";
repo = "osc"; repo = "osc";
rev = version; rev = version;
sha256 = "sha256-pywSXGM3IX3cTr1uJIP7pNGIYE/skMIoJeoaMU75zwc="; hash = "sha256-U76nAE7NdLIdrKzRC0sP8hy6G6A8Tr4Qe2PGZI2xvyk=";
}; };
buildInputs = [ bashInteractive ]; # needed for bash-completion helper buildInputs = [ bashInteractive ]; # needed for bash-completion helper
@ -45,7 +45,7 @@ buildPythonPackage rec {
homepage = "https://github.com/openSUSE/osc"; homepage = "https://github.com/openSUSE/osc";
description = "opensuse-commander with svn like handling"; description = "opensuse-commander with svn like handling";
mainProgram = "osc"; mainProgram = "osc";
maintainers = [ maintainers.peti ]; maintainers = with maintainers; [ peti saschagrunert ];
license = licenses.gpl2; license = licenses.gpl2;
}; };