c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
51 lines
970 B
Nix
51 lines
970 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, setuptools
|
|
, swig
|
|
, wheel
|
|
, msgpack
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ihm";
|
|
version = "1.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ihmwg";
|
|
repo = "python-ihm";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-a1M3YihN71M9TnkldAzN6N1UuPksDk6SPiBgr4HyC8g=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|