Files
nixpkgs/pkgs/development/python-modules/flametree/default.nix
T
Martin Weinelt d1edb8bda4 python3Packages.flametree: 0.2.0 -> 0.2.1
This commit was automatically generated using update-python-libraries.
2025-08-09 18:59:27 +02:00

49 lines
1000 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
fontconfig,
matplotlib,
pandas,
pytestCheckHook,
weasyprint,
}:
buildPythonPackage rec {
pname = "flametree";
version = "0.2.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "Edinburgh-Genome-Foundry";
repo = "Flametree";
tag = "v${version}";
hash = "sha256-5vtDfGmSX5niMXLnMqmafhq6D1gxhxVS3xbOAvQs3Po=";
};
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";
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
};
}