buildbot-nix/nix/buildbot-gitea.nix
2024-05-27 15:25:56 +02:00

26 lines
439 B
Nix

{ buildPythonPackage
, fetchPypi
, lib
, pip
, buildbot
, requests
}:
buildPythonPackage (lib.fix (self: {
pname = "buildbot-gitea";
version = "1.8.0";
propagatedBuildInputs = [
pip
buildbot
requests
];
patches = [ ./0001-reporter-create-status-in-the-base-repository-of-a-p.patch ];
src = fetchPypi {
inherit (self) pname version;
hash = "sha256-zYcILPp42QuQyfEIzmYKV9vWf47sBAQI8FOKJlZ60yA=";
};
}))