python311Packages.ihm: init at 0.41

This commit is contained in:
natsukium 2023-10-11 23:27:37 +09:00
parent 6bc5e42204
commit dbc7104de8
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,51 @@
{ 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 ];
};
}

View File

@ -5210,6 +5210,8 @@ self: super: with self; {
inherit (pkgs) igraph;
};
ihm = callPackage ../development/python-modules/ihm { };
iisignature = callPackage ../development/python-modules/iisignature { };
ijson = callPackage ../development/python-modules/ijson { };