nixpkgs/pkgs/applications/version-management/sourcehut/todo.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.1 KiB
Nix
Raw Normal View History

2021-04-18 03:10:35 +00:00
{ lib
, fetchFromSourcehut
, buildPythonPackage
, srht
, redis
, alembic
, pystache
, pytest
, factory_boy
, python
}:
buildPythonPackage rec {
pname = "todosrht";
2022-02-12 00:48:06 +00:00
version = "0.67.2";
2021-04-18 03:10:35 +00:00
src = fetchFromSourcehut {
owner = "~sircmpwn";
repo = "todo.sr.ht";
rev = version;
2022-02-12 00:48:06 +00:00
sha256 = "sha256-/QHsMlhzyah85ubZyx8j4GDUoITuWcLDJKosbZGeOZU=";
};
patches = [
# Revert change breaking Unix socket support for Redis
patches/redis-socket/todo/0001-Revert-Add-webhook-queue-monitoring.patch
];
nativeBuildInputs = srht.nativeBuildInputs;
propagatedBuildInputs = [
srht
redis
alembic
pystache
];
preBuild = ''
export PKGVER=${version}
2021-04-18 03:10:35 +00:00
export SRHT_PATH=${srht}/${python.sitePackages}/srht
'';
2019-12-30 01:04:16 +00:00
# pytest tests fail
2019-10-05 15:00:49 +00:00
checkInputs = [
pytest
factory_boy
];
2019-12-30 01:04:16 +00:00
dontUseSetuptoolsCheck = true;
2021-08-15 21:11:47 +00:00
pythonImportsCheck = [ "todosrht" ];
meta = with lib; {
homepage = "https://todo.sr.ht/~sircmpwn/todo.sr.ht";
description = "Ticket tracking service for the sr.ht network";
2021-08-15 20:54:11 +00:00
license = licenses.agpl3Only;
maintainers = with maintainers; [ eadwu ];
};
}