nixpkgs/pkgs/development/python-modules/buildbot/pkg.nix

27 lines
712 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy3k, buildbot }:
buildPythonPackage rec {
pname = "buildbot-pkg";
inherit (buildbot) version;
src = fetchPypi {
inherit pname version;
2020-08-22 21:52:46 +01:00
sha256 = "1p9qnrqx72y4jrhawgbpwisgily7zg4rh39hpky4x56d5afvjgqc";
};
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;
};
}