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

53 lines
934 B
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";
2021-04-18 03:10:35 +00:00
version = "0.64.14";
2021-04-18 03:10:35 +00:00
src = fetchFromSourcehut {
owner = "~sircmpwn";
repo = "todo.sr.ht";
rev = version;
2021-04-18 03:10:35 +00:00
sha256 = "sha256-huIAhn6h1F5w5ST4/yBwr82kAzyYwhLu+gpRuOQgnsE=";
};
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;
meta = with lib; {
homepage = "https://todo.sr.ht/~sircmpwn/todo.sr.ht";
description = "Ticket tracking service for the sr.ht network";
license = licenses.agpl3;
maintainers = with maintainers; [ eadwu ];
};
}