mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-27 22:39:33 +00:00
ablog: init at 0.10.23
This commit is contained in:
parent
e68446288e
commit
da264c508d
36
pkgs/applications/misc/ablog/default.nix
Normal file
36
pkgs/applications/misc/ablog/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user