ablog: init at 0.10.23

This commit is contained in:
Rudi Grinberg 2022-03-21 18:09:24 -06:00
parent e68446288e
commit da264c508d
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, python3
}:
with python3.pkgs;
buildPythonApplication rec {
pname = "ablog";
version = "0.10.23";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-fqqB17dNzcDZmFw3nj85T5zvMzY6SN/JxbB3IASOas8=";
};
propagatedBuildInputs = [
feedgen
sphinx
invoke
watchdog
python-dateutil
];
checkInputs = [
pytestCheckHook
];
nativeBuildInputs = [ setuptools-scm ];
meta = with lib; {
description = "ABlog for blogging with Sphinx";
homepage = "https://ablog.readthedocs.io/en/latest/";
license = licenses.mit;
maintainers = with maintainers; [ rgrinberg ];
};
}

View File

@ -914,6 +914,8 @@ with pkgs;
abduco = callPackage ../tools/misc/abduco { };
ablog = callPackage ../applications/misc/ablog { };
acct = callPackage ../tools/system/acct { };
accuraterip-checksum = callPackage ../tools/audio/accuraterip-checksum { };