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