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