mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
30748250bc
- add nativeBuildInputs - disable on unsupported Python releases
93 lines
1.9 KiB
Nix
93 lines
1.9 KiB
Nix
{ lib
|
|
, fetchFromSourcehut
|
|
, buildGoModule
|
|
, buildPythonPackage
|
|
, srht
|
|
, redis
|
|
, celery
|
|
, pyyaml
|
|
, markdown
|
|
, ansi2html
|
|
, lxml
|
|
, python
|
|
, unzip
|
|
, pip
|
|
, pythonOlder
|
|
, setuptools
|
|
}:
|
|
let
|
|
version = "0.86.10";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~sircmpwn";
|
|
repo = "builds.sr.ht";
|
|
rev = version;
|
|
hash = "sha256-frwJgwJst2/NWd8VR0KbsVwm8JfWuekkY2oIIAdh3Fw=";
|
|
};
|
|
|
|
buildsrht-api = buildGoModule ({
|
|
inherit src version;
|
|
pname = "buildsrht-api";
|
|
modRoot = "api";
|
|
vendorHash = "sha256-2khk7j22KON4MsuvFUNKSUpouJtVIOxE0hkh63iaxZ4=";
|
|
} // import ./fix-gqlgen-trimpath.nix { inherit unzip; gqlgenVersion = "0.17.29"; });
|
|
|
|
buildsrht-worker = buildGoModule {
|
|
inherit src version;
|
|
sourceRoot = "${src.name}/worker";
|
|
pname = "buildsrht-worker";
|
|
vendorHash = "sha256-obdaeRwMhuiCV2kVwDo1c+rU/hmsbiL1IgAf7AcIpoc=";
|
|
};
|
|
in
|
|
buildPythonPackage rec {
|
|
inherit src version;
|
|
pname = "buildsrht";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace "all: api worker" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pip
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
srht
|
|
redis
|
|
celery
|
|
pyyaml
|
|
markdown
|
|
# Unofficial dependencies
|
|
ansi2html
|
|
lxml
|
|
];
|
|
|
|
preBuild = ''
|
|
export PKGVER=${version}
|
|
export SRHT_PATH=${srht}/${python.sitePackages}/srht
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/lib
|
|
mkdir -p $out/bin/builds.sr.ht
|
|
|
|
cp -r images $out/lib
|
|
cp contrib/submit_image_build $out/bin/builds.sr.ht
|
|
ln -s ${buildsrht-api}/bin/api $out/bin/buildsrht-api
|
|
ln -s ${buildsrht-worker}/bin/worker $out/bin/buildsrht-worker
|
|
'';
|
|
|
|
pythonImportsCheck = [ "buildsrht" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://git.sr.ht/~sircmpwn/builds.sr.ht";
|
|
description = "Continuous integration service for the sr.ht network";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ eadwu ];
|
|
};
|
|
}
|