From e68446288efdd86b1930383b2c03c7b93bfb41ee Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Thu, 24 Mar 2022 10:18:43 -0600 Subject: [PATCH 1/2] maintainers: add rgrinberg --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index fea30c749542..6da7318831d4 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -10398,6 +10398,12 @@ githubId = 811827; name = "Gabriel Lievano"; }; + rgrinberg = { + name = "Rudi Grinberg"; + email = "me@rgrinberg.com"; + github = "rgrinberg"; + githubId = 139003; + }; rgrunbla = { email = "remy@grunblatt.org"; github = "rgrunbla"; From da264c508d28719b51f9d680e2e091b20e68d8a2 Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Mon, 21 Mar 2022 18:09:24 -0600 Subject: [PATCH 2/2] ablog: init at 0.10.23 --- pkgs/applications/misc/ablog/default.nix | 36 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/applications/misc/ablog/default.nix diff --git a/pkgs/applications/misc/ablog/default.nix b/pkgs/applications/misc/ablog/default.nix new file mode 100644 index 000000000000..b6a3a1dfdb56 --- /dev/null +++ b/pkgs/applications/misc/ablog/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 40ea0a4f8bbe..9168471e5ce6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 { };