python3Packages.fica: init at 0.4.1

This commit is contained in:
HHR2020
2026-05-11 13:16:45 +08:00
parent 549bd84d62
commit dde7586eb4
2 changed files with 53 additions and 0 deletions
@@ -0,0 +1,51 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
docutils,
pyyaml,
sphinx,
pytestCheckHook,
numpy,
}:
buildPythonPackage (finalAttrs: {
pname = "fica";
version = "0.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "chrispyles";
repo = "fica";
tag = "v${finalAttrs.version}";
hash = "sha256-A13xC8BGsPddsk8ZN2DeMCYc0phy/B4JD9shuoorOwg=";
};
build-system = [
poetry-core
];
dependencies = [
docutils
pyyaml
sphinx
];
pythonImportsCheck = [
"fica"
];
nativeCheckInputs = [
pytestCheckHook
numpy
];
meta = {
description = "Library for managing and documenting user configurations";
homepage = "https://github.com/chrispyles/fica";
changelog = "https://github.com/chrispyles/fica/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hhr2020 ];
};
})
+2
View File
@@ -5507,6 +5507,8 @@ self: super: with self; {
fiblary3-fork = callPackage ../development/python-modules/fiblary3-fork { };
fica = callPackage ../development/python-modules/fica { };
fickling = callPackage ../development/python-modules/fickling { };
fido2 = callPackage ../development/python-modules/fido2 { };