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