nixpkgs/pkgs/applications/misc/ablog/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
650 B
Nix
Raw Normal View History

2022-03-22 00:09:24 +00:00
{ lib
, python3
}:
with python3.pkgs;
buildPythonApplication rec {
pname = "ablog";
2023-02-21 13:53:23 +00:00
version = "0.10.33.post1";
2022-03-22 00:09:24 +00:00
src = fetchPypi {
inherit pname version;
2023-02-21 13:53:23 +00:00
sha256 = "sha256-+vrVQ4sItCXrSCzNXyKk6/6oDBOyfyD7iNWzmcbE/BQ=";
2022-03-22 00:09:24 +00:00
};
propagatedBuildInputs = [
feedgen
sphinx
invoke
watchdog
python-dateutil
];
nativeCheckInputs = [
2022-03-22 00:09:24 +00:00
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 ];
};
}