about summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration/buildbot/pkg.nix
blob: 3f982a2a36a4cadbfa1bdba90841c6933dd027bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, buildPythonPackage, isPy3k, buildbot }:

buildPythonPackage {
  pname = "buildbot_pkg";
  inherit (buildbot) src version;

  postPatch = ''
    cd pkg
    # Their listdir function filters out `node_modules` folders.
    # Do we have to care about that with Nix...?
    substituteInPlace buildbot_pkg.py --replace "os.listdir = listdir" ""
  '';

  # No tests
  doCheck = false;

  pythonImportsCheck = [ "buildbot_pkg" ];

  disabled = !isPy3k;

  meta = with lib; {
    homepage = "https://buildbot.net/";
    description = "Buildbot Packaging Helper";
    maintainers = teams.buildbot.members;
    license = licenses.gpl2;
  };
}