python3Packages.miniflux: init at 1.1.4 (#470195)

This commit is contained in:
Aleksana
2025-12-14 14:35:33 +00:00
committed by GitHub
3 changed files with 41 additions and 0 deletions
+5
View File
@@ -27876,6 +27876,11 @@
github = "wamserma";
githubId = 60148;
};
wariuccio = {
name = "Wariuccio";
github = "wariuccio";
githubId = 191101255;
};
water-sucks = {
email = "varun@snare.dev";
name = "Varun Narravula";
@@ -0,0 +1,34 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
requests,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "miniflux";
version = "1.1.4";
pyproject = true;
src = fetchFromGitHub {
owner = "miniflux";
repo = "python-client";
tag = version;
hash = "sha256-SCam8WiQH0cOUcqMMvhNDaNPGs7hi1RP4x4eoa5WIa4=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
pythonImportsCheck = [ "miniflux" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Miniflux Python API Client";
homepage = "https://github.com/miniflux/python-client";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ wariuccio ];
};
}
+2
View File
@@ -9578,6 +9578,8 @@ self: super: with self; {
minidump = callPackage ../development/python-modules/minidump { };
miniflux = callPackage ../development/python-modules/miniflux { };
miniful = callPackage ../development/python-modules/miniful { };
minify-html = callPackage ../development/python-modules/minify-html { };