python3Packages.sphinxfeed-lsaffre: init at 0.3.6
This is a new dependency of khal. The package was almost completely generated via `nix-init`.
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
hatchling,
|
||||
feedgen,
|
||||
python-dateutil,
|
||||
sphinx,
|
||||
pytestCheckHook,
|
||||
pytest-cov-stub,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "sphinxfeed-lsaffre";
|
||||
version = "0.3.6";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lsaffre";
|
||||
repo = "sphinxfeed";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-2hS8EzaUlxAqBT0R5NMYAuj3ZMPq+x5nqJnidQOAGfM=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
hatchling
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
feedgen
|
||||
python-dateutil
|
||||
sphinx
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
pytest-cov-stub
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"sphinxfeed"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Automatically generates an RSS feed when a build is run";
|
||||
homepage = "https://github.com/lsaffre/sphinxfeed";
|
||||
changelog = "https://github.com/lsaffre/sphinxfeed/blob/${finalAttrs.src.tag}/CHANGELOG.rst";
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = [ lib.maintainers.antonmosich ];
|
||||
};
|
||||
})
|
||||
@@ -18280,6 +18280,8 @@ self: super: with self; {
|
||||
|
||||
sphinxext-rediraffe = callPackage ../development/python-modules/sphinxext-rediraffe { };
|
||||
|
||||
sphinxfeed-lsaffre = callPackage ../development/python-modules/sphinxfeed-lsaffre { };
|
||||
|
||||
spiderpy = callPackage ../development/python-modules/spiderpy { };
|
||||
|
||||
spidev = callPackage ../development/python-modules/spidev { };
|
||||
|
||||
Reference in New Issue
Block a user