python312Packages.ihm: 1.7 -> 1.8

This commit is contained in:
R. Ryantm
2024-12-06 23:25:29 +09:00
committed by natsukium
parent e574201552
commit f6bdeca7a7
@@ -4,30 +4,27 @@
fetchFromGitHub,
setuptools,
swig,
wheel,
msgpack,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "ihm";
version = "1.7";
version = "1.8";
pyproject = true;
src = fetchFromGitHub {
owner = "ihmwg";
repo = "python-ihm";
rev = "refs/tags/${version}";
hash = "sha256-jQm8Xl2yyR+y1Leyz8naT1rFJpgK5XdUd7YgnhDuBWo=";
hash = "sha256-Uz/4Egd7swY4kDl6FR564eiaYEdY9IUoz2Lv5pJ1C30=";
};
nativeBuildInputs = [
setuptools
swig
wheel
];
nativeBuildInputs = [ swig ];
propagatedBuildInputs = [ msgpack ];
build-system = [ setuptools ];
dependencies = [ msgpack ];
nativeCheckInputs = [ pytestCheckHook ];