40 lines
884 B
Nix
40 lines
884 B
Nix
{ stdenv, fetchgit, buildPythonPackage
|
|
, python
|
|
, srht, pyyaml, PyGithub, cryptography }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dispatchsrht";
|
|
version = "0.12.3";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.sr.ht/~sircmpwn/dispatch.sr.ht";
|
|
rev = version;
|
|
sha256 = "0lpc8jpyz1rg3g98546wlhr27b15g32lds77hl42aixv5f5b8lc9";
|
|
};
|
|
|
|
patches = [
|
|
./use-srht-path.patch
|
|
];
|
|
|
|
nativeBuildInputs = srht.nativeBuildInputs;
|
|
|
|
propagatedBuildInputs = [
|
|
srht
|
|
pyyaml
|
|
PyGithub
|
|
cryptography
|
|
];
|
|
|
|
preBuild = ''
|
|
export PKGVER=${version}
|
|
export SRHT_PATH=${srht}/${python.sitePackages}/srht
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://dispatch.sr.ht/~sircmpwn/dispatch.sr.ht;
|
|
description = "Task dispatcher and service integration tool for the sr.ht network";
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ eadwu ];
|
|
};
|
|
}
|