2021-04-18 04:10:35 +01:00
|
|
|
{ lib
|
|
|
|
, fetchFromSourcehut
|
|
|
|
, buildPythonPackage
|
|
|
|
, srht
|
|
|
|
, redis
|
|
|
|
, alembic
|
|
|
|
, pystache
|
|
|
|
, pytest
|
|
|
|
, factory_boy
|
|
|
|
, python
|
|
|
|
}:
|
2019-01-22 02:01:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "todosrht";
|
2021-12-28 21:34:12 +00:00
|
|
|
version = "0.66.1";
|
2019-01-22 02:01:52 +00:00
|
|
|
|
2021-04-18 04:10:35 +01:00
|
|
|
src = fetchFromSourcehut {
|
|
|
|
owner = "~sircmpwn";
|
|
|
|
repo = "todo.sr.ht";
|
2019-01-22 02:01:52 +00:00
|
|
|
rev = version;
|
2021-12-28 21:34:12 +00:00
|
|
|
sha256 = "sha256-P0xaQpK7O9zipGSIa5jL1O0L/fKt51EMNGt7XndYQ+g=";
|
2019-01-22 02:01:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = srht.nativeBuildInputs;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
srht
|
|
|
|
redis
|
|
|
|
alembic
|
|
|
|
pystache
|
|
|
|
];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
export PKGVER=${version}
|
2021-04-18 04:10:35 +01:00
|
|
|
export SRHT_PATH=${srht}/${python.sitePackages}/srht
|
2019-01-22 02:01:52 +00:00
|
|
|
'';
|
|
|
|
|
2019-12-30 01:04:16 +00:00
|
|
|
# pytest tests fail
|
2019-10-05 16:00:49 +01:00
|
|
|
checkInputs = [
|
|
|
|
pytest
|
|
|
|
factory_boy
|
|
|
|
];
|
|
|
|
|
2019-12-30 01:04:16 +00:00
|
|
|
dontUseSetuptoolsCheck = true;
|
2021-08-15 22:11:47 +01:00
|
|
|
pythonImportsCheck = [ "todosrht" ];
|
2019-01-22 02:01:52 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://todo.sr.ht/~sircmpwn/todo.sr.ht";
|
2019-01-22 02:01:52 +00:00
|
|
|
description = "Ticket tracking service for the sr.ht network";
|
2021-08-15 21:54:11 +01:00
|
|
|
license = licenses.agpl3Only;
|
2019-01-22 02:01:52 +00:00
|
|
|
maintainers = with maintainers; [ eadwu ];
|
|
|
|
};
|
|
|
|
}
|