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

python-osc: update from 0.164.4 to 0.167.1

+5 -7
+5 -7
pkgs/development/python-modules/osc/default.nix
··· 1 - { stdenv, buildPythonPackage , fetchFromGitHub 2 - , bashInteractive , urlgrabber, m2crypto 3 - }: 1 + { stdenv, buildPythonPackage , fetchFromGitHub , bashInteractive , urlgrabber, m2crypto, rpm }: 4 2 5 3 buildPythonPackage rec { 6 4 pname = "osc"; 7 - version = "0.165.4"; 5 + version = "0.167.1"; 8 6 9 7 src = fetchFromGitHub { 10 8 owner = "openSUSE"; 11 9 repo = "osc"; 12 10 rev = version; 13 - sha256 = "1f8q65wlgchzwzarwrv6a0p60gw0ykpf4d5s7cks835hyawgcbyl"; 11 + sha256 = "0f3c6mzvk9yjicwfdh47j4s2l1wrfgpa6lmqdchasdqfsacps4r6"; 14 12 }; 15 13 16 14 buildInputs = [ bashInteractive ]; # needed for bash-completion helper 15 + checkInputs = [ rpm ]; 17 16 propagatedBuildInputs = [ urlgrabber m2crypto ]; 18 - 19 - doCheck = false; 20 17 21 18 postInstall = '' 22 19 ln -s $out/bin/osc-wrapper.py $out/bin/osc ··· 32 29 ''; 33 30 34 31 meta = with stdenv.lib; { 32 + homepage = "https://github.com/openSUSE/osc"; 35 33 description = "opensuse-commander with svn like handling"; 36 34 maintainers = [ maintainers.peti ]; 37 35 license = licenses.gpl2;