Files
nixpkgs/pkgs/development/python-modules/flametree/default.nix
2025-04-21 11:14:50 +00:00

49 lines
1000 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
fontconfig,
matplotlib,
pandas,
pytestCheckHook,
weasyprint,
}:
buildPythonPackage rec {
pname = "flametree";
version = "0.2.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "Edinburgh-Genome-Foundry";
repo = "Flametree";
tag = "v${version}";
hash = "sha256-4yU4u5OmVP3adz9DNsU0BtuQ7LZYqbOLxbuS48lksHM=";
};
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 ];
};
}