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

32 lines
781 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-07-31 14:23:56 +00:00
sha256 = "sha256-PVmDJN3/PMsvZrrwSNaUUQLPkOMWO6edIEEfZSwspTs=";
};
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";
maintainers = with maintainers; [ ryansydnor lopsided98 ];
license = licenses.gpl2;
};
}