tortoisehg: 3.4.2 -> 3.6
It builds and runs. Tested very superficially with an empty repository.
This commit is contained in:
parent
ee5f7d4c16
commit
d69e1956d7
|
@ -2,19 +2,19 @@
|
||||||
|
|
||||||
pkgs.buildPythonPackage rec {
|
pkgs.buildPythonPackage rec {
|
||||||
name = "tortoisehg-${version}";
|
name = "tortoisehg-${version}";
|
||||||
version = "3.4.2";
|
version = "3.6";
|
||||||
namePrefix = "";
|
namePrefix = "";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "https://bitbucket.org/tortoisehg/targz/downloads/${name}.tar.gz";
|
url = "https://bitbucket.org/tortoisehg/targz/downloads/${name}.tar.gz";
|
||||||
sha256 = "18a587c8fybfjxbcj8i2smypxy7vfzmmrzibs74n3zy6dlb949nj";
|
sha256 = "ec43d13f029bb23a12129d2a2c3b3b4daf3d8121cbb5c9c23e4872f7b0b75ad8";
|
||||||
};
|
};
|
||||||
|
|
||||||
pythonPath = [ pkgs.pyqt4 mercurial ]
|
pythonPath = [ pkgs.pyqt4 mercurial ]
|
||||||
++ (with pyPackages; [qscintilla iniparse]);
|
++ (with pyPackages; [qscintilla iniparse]);
|
||||||
|
|
||||||
propagatedBuildInputs = with pyPackages; [ qscintilla iniparse ];
|
propagatedBuildInputs = with pyPackages; [ qscintilla iniparse ];
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
postUnpack = ''
|
postUnpack = ''
|
||||||
|
@ -33,4 +33,4 @@ pkgs.buildPythonPackage rec {
|
||||||
platforms = lib.platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
maintainers = [ "abcz2.uprola@gmail.com" ];
|
maintainers = [ "abcz2.uprola@gmail.com" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue