tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python-osc: update from 0.164.4 to 0.167.1
Peter Simons
6 years ago
f5bb6c02
2a605198
+5
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
osc
default.nix
+5
-7
pkgs/development/python-modules/osc/default.nix
···
1
1
-
{ stdenv, buildPythonPackage , fetchFromGitHub
2
2
-
, bashInteractive , urlgrabber, m2crypto
3
3
-
}:
1
1
+
{ stdenv, buildPythonPackage , fetchFromGitHub , bashInteractive , urlgrabber, m2crypto, rpm }:
4
2
5
3
buildPythonPackage rec {
6
4
pname = "osc";
7
7
-
version = "0.165.4";
5
5
+
version = "0.167.1";
8
6
9
7
src = fetchFromGitHub {
10
8
owner = "openSUSE";
11
9
repo = "osc";
12
10
rev = version;
13
13
-
sha256 = "1f8q65wlgchzwzarwrv6a0p60gw0ykpf4d5s7cks835hyawgcbyl";
11
11
+
sha256 = "0f3c6mzvk9yjicwfdh47j4s2l1wrfgpa6lmqdchasdqfsacps4r6";
14
12
};
15
13
16
14
buildInputs = [ bashInteractive ]; # needed for bash-completion helper
15
15
+
checkInputs = [ rpm ];
17
16
propagatedBuildInputs = [ urlgrabber m2crypto ];
18
18
-
19
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
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;