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

44 lines
867 B
Nix
Raw Normal View History

{ stdenv, fetchgit, buildPythonPackage
, python
2019-10-05 15:00:49 +00:00
, srht, redis, alembic, pystache
, pytest, factory_boy, writeText }:
buildPythonPackage rec {
pname = "todosrht";
2020-06-22 23:50:49 +00:00
version = "0.61.11";
src = fetchgit {
url = "https://git.sr.ht/~sircmpwn/todo.sr.ht";
rev = version;
2020-06-22 23:50:49 +00:00
sha256 = "lUM81FYlR6AXCtXZtYiB+1FD8E1aOX7qxbWUVc36lJM=";
};
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 15:00:49 +00:00
checkInputs = [
pytest
factory_boy
];
2019-12-30 01:04:16 +00:00
dontUseSetuptoolsCheck = true;
meta = with stdenv.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 ];
};
}