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

44 lines
872 B
Nix
Raw Normal View History

{ lib, 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-10-11 13:43:45 +00:00
version = "0.62.1";
src = fetchgit {
url = "https://git.sr.ht/~sircmpwn/todo.sr.ht";
rev = version;
2020-10-11 13:43:45 +00:00
sha256 = "17fsv2z37sjzqzpvx39nc36xln1ayivzjg309d2vmb94aaym4nz2";
};
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 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 ];
};
}