1 { lib, fetchurl, buildPythonPackage, isPy3k, pygments, wxPython }:
3 buildPythonPackage rec {
5 pname = "robotframework-ride";
9 url = "https://robotframework-ride.googlecode.com/files/${pname}-${version}.tar.gz";
10 sha256 = "1lf5f4x80f7d983bmkx12sxcizzii21kghs8kf63a1mj022a5x5j";
13 propagatedBuildInputs = [ pygments wxPython ];
15 # ride_postinstall.py checks that needed deps are installed and creates a
16 # desktop shortcut. We don't really need it and it clutters up bin/ so
19 rm -f "$out/bin/ride_postinstall.py"
22 # error: invalid command 'test'
26 description = "Light-weight and intuitive editor for Robot Framework test case files";
27 homepage = "https://code.google.com/p/robotframework-ride/";
28 license = licenses.asl20;
29 platforms = platforms.linux;
30 maintainers = with maintainers; [ bjornfor ];