3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/buildbot/pkg.nix

27 lines
693 B
Nix
Raw Normal View History

2019-10-27 01:27:30 +00:00
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
pname = "buildbot-pkg";
2019-12-01 05:21:17 +00:00
version = "2.5.1";
src = fetchPypi {
inherit pname version;
2019-12-01 05:21:17 +00:00
sha256 = "1g87pddsyas1r0f6z29047cwnz7ds4925f6n9g7b0pkj3k73ci06";
};
postPatch = ''
# 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" ""
'';
2019-10-27 01:27:30 +00:00
disabled = !isPy3k;
2017-12-17 04:06:43 +00:00
meta = with lib; {
2019-10-27 01:27:30 +00:00
homepage = "https://buildbot.net/";
description = "Buildbot Packaging Helper";
2019-08-18 18:20:18 +01:00
maintainers = with maintainers; [ nand0p ryansydnor lopsided98 ];
license = licenses.gpl2;
};
}