mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
70 lines
1.1 KiB
Nix
70 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitLab,
|
|
setuptools,
|
|
setuptools-scm,
|
|
unittestCheckHook,
|
|
hledger,
|
|
perl,
|
|
rich,
|
|
pandas,
|
|
scipy,
|
|
psutil,
|
|
matplotlib,
|
|
drawilleplot,
|
|
asteval,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hledger-utils";
|
|
version = "1.14.0";
|
|
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "nobodyinperson";
|
|
repo = "hledger-utils";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Qu4nUcAGTACmLhwc7fkLxITOyFnUHv85qMhtViFumVs=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
rich
|
|
pandas
|
|
scipy
|
|
psutil
|
|
matplotlib
|
|
drawilleplot
|
|
asteval
|
|
];
|
|
|
|
checkInputs = [ unittestCheckHook ];
|
|
|
|
nativeCheckInputs = [
|
|
hledger
|
|
perl
|
|
];
|
|
|
|
preCheck = ''
|
|
export PATH=$out/bin:$PATH
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Utilities extending hledger";
|
|
homepage = "https://gitlab.com/nobodyinperson/hledger-utils";
|
|
license = with licenses; [
|
|
cc0
|
|
cc-by-40
|
|
gpl3
|
|
];
|
|
maintainers = with maintainers; [ nobbz ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|