1{ lib, fetchurl, buildPythonPackage, isPy3k, pygments, wxPython }: 2 3buildPythonPackage rec { 4 version = "1.2.3"; 5 pname = "robotframework-ride"; 6 disabled = isPy3k; 7 8 src = fetchurl { 9 url = "https://robotframework-ride.googlecode.com/files/${pname}-${version}.tar.gz"; 10 sha256 = "1lf5f4x80f7d983bmkx12sxcizzii21kghs8kf63a1mj022a5x5j"; 11 }; 12 13 propagatedBuildInputs = [ pygments wxPython ]; 14 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 17 # remove it. 18 postInstall = '' 19 rm -f "$out/bin/ride_postinstall.py" 20 ''; 21 22 # error: invalid command 'test' 23 doCheck = false; 24 25 meta = with lib; { 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 ]; 31 }; 32}