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

32 lines
789 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy3k, buildbot }:
buildPythonPackage rec {
pname = "buildbot-pkg";
inherit (buildbot) version;
src = fetchPypi {
inherit pname version;
2021-04-07 05:21:38 +01:00
sha256 = "0bv1qq4cf24cklxfqfnkhjb6w4xqcp3afdcan75n6v7mnwqxyyvr";
};
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" ""
'';
# No tests
doCheck = false;
pythonImportsCheck = [ "buildbot_pkg" ];
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;
};
}