1 { lib, buildPythonPackage, fetchPypi, isPy3k, buildbot }:
3 buildPythonPackage rec {
4 pname = "buildbot-pkg";
5 inherit (buildbot) version;
9 hash = "sha256-cfPsNnR0gEgz1y/GNR6faixk2HyuHaRh1E9nGHjCb58=";
13 # Their listdir function filters out `node_modules` folders.
14 # Do we have to care about that with Nix...?
15 substituteInPlace buildbot_pkg.py --replace "os.listdir = listdir" ""
21 pythonImportsCheck = [ "buildbot_pkg" ];
26 homepage = "https://buildbot.net/";
27 description = "Buildbot Packaging Helper";
28 maintainers = teams.buildbot.members;
29 license = licenses.gpl2;