Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
fontconfig,
|
|
matplotlib,
|
|
pandas,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
weasyprint,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flametree";
|
|
version = "0.2.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Edinburgh-Genome-Foundry";
|
|
repo = "Flametree";
|
|
tag = "v${version}";
|
|
hash = "sha256-5vtDfGmSX5niMXLnMqmafhq6D1gxhxVS3xbOAvQs3Po=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
nativeCheckInputs = [
|
|
matplotlib
|
|
pandas
|
|
pytestCheckHook
|
|
weasyprint
|
|
];
|
|
|
|
preCheck = ''
|
|
export FONTCONFIG_FILE=${fontconfig.out}/etc/fonts/fonts.conf
|
|
'';
|
|
|
|
disabledTests = [
|
|
# AssertionError, https://github.com/Edinburgh-Genome-Foundry/Flametree/issues/9
|
|
"test_weasyprint"
|
|
];
|
|
|
|
pythonImportsCheck = [ "flametree" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python file and zip operations made easy";
|
|
homepage = "https://github.com/Edinburgh-Genome-Foundry/Flametree";
|
|
changelog = "https://github.com/Edinburgh-Genome-Foundry/Flametree/releases/tag/${src.tag}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ prusnak ];
|
|
};
|
|
}
|