mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-10 15:23:43 +00:00
52 lines
934 B
Nix
52 lines
934 B
Nix
{
|
|
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 ];
|
|
};
|
|
})
|