Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #303080 from saschagrunert/osc

osc: 1.3.1 -> 1.6.1

authored by Thiago Kenji Okada and committed by GitHub ea50effb 11486e15

+3 -3
+3 -3
pkgs/development/python-modules/osc/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "osc"; 15 - version = "1.3.1"; 15 + version = "1.6.1"; 16 16 format = "setuptools"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "openSUSE"; 20 20 repo = "osc"; 21 21 rev = version; 22 - sha256 = "sha256-pywSXGM3IX3cTr1uJIP7pNGIYE/skMIoJeoaMU75zwc="; 22 + hash = "sha256-U76nAE7NdLIdrKzRC0sP8hy6G6A8Tr4Qe2PGZI2xvyk="; 23 23 }; 24 24 25 25 buildInputs = [ bashInteractive ]; # needed for bash-completion helper ··· 45 45 homepage = "https://github.com/openSUSE/osc"; 46 46 description = "opensuse-commander with svn like handling"; 47 47 mainProgram = "osc"; 48 - maintainers = [ maintainers.peti ]; 48 + maintainers = with maintainers; [ peti saschagrunert ]; 49 49 license = licenses.gpl2; 50 50 }; 51 51