mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
43 lines
894 B
Nix
43 lines
894 B
Nix
|
{ stdenv, fetchgit, buildPythonPackage
|
||
|
, python
|
||
|
, srht, redis, alembic, pystache }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "todosrht";
|
||
|
version = "0.46.8";
|
||
|
|
||
|
src = fetchgit {
|
||
|
url = "https://git.sr.ht/~sircmpwn/todo.sr.ht";
|
||
|
rev = version;
|
||
|
sha256 = "17nqqy81535jnkidjiqv8v2301w5wzbbvx4czib69aagw1l85gnn";
|
||
|
};
|
||
|
|
||
|
patches = [
|
||
|
./use-srht-path.patch
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = srht.nativeBuildInputs;
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
srht
|
||
|
redis
|
||
|
alembic
|
||
|
pystache
|
||
|
];
|
||
|
|
||
|
preBuild = ''
|
||
|
export PKGVER=${version}
|
||
|
export SRHT_PATH=${srht}/${python.sitePackages}/srht
|
||
|
'';
|
||
|
|
||
|
# Tests require a network connection
|
||
|
doCheck = false;
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|