python3Packages.fica: init at 0.4.1
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user