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

35 lines
759 B
Nix
Raw Normal View History

{ lib, fetchgit, buildPythonPackage
2019-12-30 01:03:28 +00:00
, srht, pyyaml, PyGithub }:
buildPythonPackage rec {
pname = "dispatchsrht";
2020-06-22 23:50:14 +00:00
version = "0.14.9";
src = fetchgit {
url = "https://git.sr.ht/~sircmpwn/dispatch.sr.ht";
rev = version;
2020-06-22 23:50:14 +00:00
sha256 = "JUffuJTKY4I8CrJc8tJWL+CbJCZtiqtUSO9SgYoeux0=";
};
nativeBuildInputs = srht.nativeBuildInputs;
propagatedBuildInputs = [
srht
pyyaml
PyGithub
];
preBuild = ''
export PKGVER=${version}
'';
2021-01-03 05:36:55 +00:00
dontUseSetuptoolsCheck = true;
meta = with 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 ];
};
}