2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchgit, buildPythonPackage
|
2019-12-30 01:03:28 +00:00
|
|
|
, srht, pyyaml, PyGithub }:
|
2019-01-22 02:01:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "dispatchsrht";
|
2020-06-23 00:50:14 +01:00
|
|
|
version = "0.14.9";
|
2019-01-22 02:01:52 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://git.sr.ht/~sircmpwn/dispatch.sr.ht";
|
|
|
|
rev = version;
|
2020-06-23 00:50:14 +01:00
|
|
|
sha256 = "JUffuJTKY4I8CrJc8tJWL+CbJCZtiqtUSO9SgYoeux0=";
|
2019-01-22 02:01:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = srht.nativeBuildInputs;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
srht
|
|
|
|
pyyaml
|
|
|
|
PyGithub
|
|
|
|
];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
export PKGVER=${version}
|
|
|
|
'';
|
|
|
|
|
2021-01-03 05:36:55 +00:00
|
|
|
dontUseSetuptoolsCheck = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://dispatch.sr.ht/~sircmpwn/dispatch.sr.ht";
|
2019-01-22 02:01:52 +00:00
|
|
|
description = "Task dispatcher and service integration tool for the sr.ht network";
|
|
|
|
license = licenses.agpl3;
|
|
|
|
maintainers = with maintainers; [ eadwu ];
|
|
|
|
};
|
|
|
|
}
|