1{ stdenv, fetchurl, buildPythonPackage, isPy3k, pygments, wxPython }:
2
3buildPythonPackage rec {
4 version = "1.2.3";
5 pname = "robotframework-ride";
6 disabled = isPy3k;
7 name = pname + "-" + version;
8
9 src = fetchurl {
10 url = "https://robotframework-ride.googlecode.com/files/${name}.tar.gz";
11 sha256 = "1lf5f4x80f7d983bmkx12sxcizzii21kghs8kf63a1mj022a5x5j";
12 };
13
14 propagatedBuildInputs = [ pygments wxPython ];
15
16 # ride_postinstall.py checks that needed deps are installed and creates a
17 # desktop shortcut. We don't really need it and it clutters up bin/ so
18 # remove it.
19 postInstall = ''
20 rm -f "$out/bin/ride_postinstall.py"
21 '';
22
23 # error: invalid command 'test'
24 doCheck = false;
25
26 meta = with stdenv.lib; {
27 description = "Light-weight and intuitive editor for Robot Framework test case files";
28 homepage = https://code.google.com/p/robotframework-ride/;
29 license = licenses.asl20;
30 platforms = platforms.linux;
31 maintainers = with maintainers; [ bjornfor ];
32 };
33}