3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/version-management/sourcehut/todo.nix

54 lines
976 B
Nix
Raw Normal View History

2021-04-18 04:10:35 +01:00
{ lib
, fetchFromSourcehut
, buildPythonPackage
, srht
, redis
, alembic
, pystache
, pytest
, factory_boy
, python
}:
buildPythonPackage rec {
pname = "todosrht";
2021-12-28 21:34:12 +00:00
version = "0.66.1";
2021-04-18 04:10:35 +01:00
src = fetchFromSourcehut {
owner = "~sircmpwn";
repo = "todo.sr.ht";
rev = version;
2021-12-28 21:34:12 +00:00
sha256 = "sha256-P0xaQpK7O9zipGSIa5jL1O0L/fKt51EMNGt7XndYQ+g=";
};
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-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" ];
meta = with lib; {
homepage = "https://todo.sr.ht/~sircmpwn/todo.sr.ht";
description = "Ticket tracking service for the sr.ht network";
2021-08-15 21:54:11 +01:00
license = licenses.agpl3Only;
maintainers = with maintainers; [ eadwu ];
};
}