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";
2020-01-24 01:31:04 +00:00
version = "2.6.0";
src = fetchPypi {
inherit pname version;
2020-01-24 01:31:04 +00:00
sha256 = "07ynk46c9h47ibbdm93h15xbrzflsl4llm0jr4c8pm6krs6byb4z";
};
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;
};
}