Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / robotframework-ride / default.nix
blobbc9e0873fe54883b4f408605c9c67d218a27aaef
1 { lib, fetchurl, buildPythonPackage, isPy3k, pygments, wxPython }:
3 buildPythonPackage rec {
4   version = "1.2.3";
5   pname = "robotframework-ride";
6   disabled = isPy3k;
8   src = fetchurl {
9     url = "https://robotframework-ride.googlecode.com/files/${pname}-${version}.tar.gz";
10     sha256 = "1lf5f4x80f7d983bmkx12sxcizzii21kghs8kf63a1mj022a5x5j";
11   };
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
17   # remove it.
18   postInstall = ''
19     rm -f "$out/bin/ride_postinstall.py"
20   '';
22   # error: invalid command 'test'
23   doCheck = false;
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   };