mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
Merge pull request #165187 from rgrinberg/ablog
This commit is contained in:
commit
528edfe5ec
@ -10438,6 +10438,12 @@
|
|||||||
githubId = 811827;
|
githubId = 811827;
|
||||||
name = "Gabriel Lievano";
|
name = "Gabriel Lievano";
|
||||||
};
|
};
|
||||||
|
rgrinberg = {
|
||||||
|
name = "Rudi Grinberg";
|
||||||
|
email = "me@rgrinberg.com";
|
||||||
|
github = "rgrinberg";
|
||||||
|
githubId = 139003;
|
||||||
|
};
|
||||||
rgrunbla = {
|
rgrunbla = {
|
||||||
email = "remy@grunblatt.org";
|
email = "remy@grunblatt.org";
|
||||||
github = "rgrunbla";
|
github = "rgrunbla";
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -920,6 +920,8 @@ with pkgs;
|
|||||||
|
|
||||||
abduco = callPackage ../tools/misc/abduco { };
|
abduco = callPackage ../tools/misc/abduco { };
|
||||||
|
|
||||||
|
ablog = callPackage ../applications/misc/ablog { };
|
||||||
|
|
||||||
acct = callPackage ../tools/system/acct { };
|
acct = callPackage ../tools/system/acct { };
|
||||||
|
|
||||||
accuraterip-checksum = callPackage ../tools/audio/accuraterip-checksum { };
|
accuraterip-checksum = callPackage ../tools/audio/accuraterip-checksum { };
|
||||||
|
Loading…
Reference in New Issue
Block a user