python3Packages.flametree: enable tests
This commit is contained in:
parent
6ee94fc354
commit
99c80ee729
@ -1,25 +1,45 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchFromGitHub
|
||||||
|
, fontconfig
|
||||||
|
, matplotlib
|
||||||
|
, pandas
|
||||||
|
, pytestCheckHook
|
||||||
|
, weasyprint
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "flametree";
|
pname = "flametree";
|
||||||
version = "0.1.11";
|
version = "0.1.11";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
owner = "Edinburgh-Genome-Foundry";
|
||||||
sha256 = "c8eb81dea8c7f8261a2aa03d2bac98b1d21ebceec9c67efaac423f7c1b4fe061";
|
repo = "Flametree";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1ynrk1ivl1vjiga0ayl8k89vs5il7i0pf9jz2ycn771c47szwk4x";
|
||||||
};
|
};
|
||||||
|
|
||||||
# no tests in tarball
|
checkInputs = [
|
||||||
doCheck = false;
|
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" ];
|
pythonImportsCheck = [ "flametree" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/Edinburgh-Genome-Foundry/Flametree";
|
|
||||||
description = "Python file and zip operations made easy";
|
description = "Python file and zip operations made easy";
|
||||||
|
homepage = "https://github.com/Edinburgh-Genome-Foundry/Flametree";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ prusnak ];
|
maintainers = with maintainers; [ prusnak ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user