b5f92a349c
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
51 lines
971 B
Nix
51 lines
971 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, setuptools
|
|
, swig
|
|
, wheel
|
|
, msgpack
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ihm";
|
|
version = "0.41";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ihmwg";
|
|
repo = "python-ihm";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-weeOizVWFcOxD45QsvEaoknTofZjglCvidyvXpyRKwc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
swig
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
msgpack
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# requires network access
|
|
"test_validator_example"
|
|
];
|
|
|
|
pythonImportsCheck = [ "ihm" ];
|
|
|
|
meta = with lib; {
|
|
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.rev}/ChangeLog.rst";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ natsukium ];
|
|
};
|
|
}
|