blob: 7830ba09d1b561e6781a2fc35b83ba9b53cc6a68 (
plain)
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,
swig,
msgpack,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "ihm";
version = "2.8";
pyproject = true;
src = fetchFromGitHub {
owner = "ihmwg";
repo = "python-ihm";
tag = version;
hash = "sha256-sT2wZRKyW+N0gd6xwOAEXImMnWKWq8h9UX1b3qkDLGQ=";
};
nativeBuildInputs = [ swig ];
build-system = [ setuptools ];
dependencies = [ msgpack ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# requires network access
"test_validator_example"
];
pythonImportsCheck = [ "ihm" ];
meta = {
description = "Python package for handling IHM mmCIF and BinaryCIF files";
homepage = "https://github.com/ihmwg/python-ihm";
changelog = "https://github.com/ihmwg/python-ihm/blob/${src.tag}/ChangeLog.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ natsukium ];
};
}
|