blob: 317a9c582b3dee6e891ddd871cf5e79706de9785 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools-scm
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "newick";
version = "1.9.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "dlce-eva";
repo = "python-newick";
rev = "v${version}";
hash = "sha256-TxyR6RYvy2oIcDNZnHrExtPYGspyWOtZqNy488OmWwk=";
};
nativeBuildInputs = [
setuptools-scm
];
postPatch = ''
# remove coverage arguments to pytest
sed -i '/--cov/d' setup.cfg
'';
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"newick"
];
meta = with lib; {
description = "A python package to read and write the Newick format";
homepage = "https://github.com/dlce-eva/python-newick";
license = licenses.asl20;
maintainers = with maintainers; [ alxsimon ];
};
}
|