forked from mirrors/nixpkgs
37 lines
638 B
Nix
37 lines
638 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|