2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchgit, buildPythonPackage
|
2019-01-22 02:01:52 +00:00
|
|
|
, python
|
2019-10-05 16:00:49 +01:00
|
|
|
, srht, redis, alembic, pystache
|
|
|
|
, pytest, factory_boy, writeText }:
|
2019-01-22 02:01:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "todosrht";
|
2020-10-11 14:43:45 +01:00
|
|
|
version = "0.62.1";
|
2019-01-22 02:01:52 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://git.sr.ht/~sircmpwn/todo.sr.ht";
|
|
|
|
rev = version;
|
2020-10-11 14:43:45 +01:00
|
|
|
sha256 = "17fsv2z37sjzqzpvx39nc36xln1ayivzjg309d2vmb94aaym4nz2";
|
2019-01-22 02:01:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = srht.nativeBuildInputs;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
srht
|
|
|
|
redis
|
|
|
|
alembic
|
|
|
|
pystache
|
|
|
|
];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
export PKGVER=${version}
|
|
|
|
'';
|
|
|
|
|
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;
|
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";
|
|
|
|
license = licenses.agpl3;
|
|
|
|
maintainers = with maintainers; [ eadwu ];
|
|
|
|
};
|
|
|
|
}
|