Merge pull request #5946 from richardlarocque/loxodo2
Add Loxodo to python-packages.nix
This commit is contained in:
commit
dad8b95ea5
1 changed files with 21 additions and 0 deletions
|
@ -5522,6 +5522,27 @@ let
|
||||||
propagatedBuildInputs = with self; [ unittest2 ];
|
propagatedBuildInputs = with self; [ unittest2 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
loxodo = buildPythonPackage {
|
||||||
|
name = "loxodo-0.20150124";
|
||||||
|
disabled = isPy3k;
|
||||||
|
|
||||||
|
src = pkgs.fetchgit {
|
||||||
|
url = "https://github.com/sommer/loxodo.git";
|
||||||
|
rev = "6c56efb4511fd6f645ad0f8eb3deafc8071c5795";
|
||||||
|
sha256 = "02whmv4am8cz401rplplqzbipkyf0wd69z43sd3yw05rh7f3xbs2";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self; [ wxPython modules.readline ];
|
||||||
|
postInstall = "mv $out/bin/loxodo.py $out/bin/loxodo";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A Password Safe V3 compatible password vault";
|
||||||
|
homepage = http://www.christoph-sommer.de/loxodo/;
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
lxml = buildPythonPackage ( rec {
|
lxml = buildPythonPackage ( rec {
|
||||||
name = "lxml-3.3.6";
|
name = "lxml-3.3.6";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue