python312Packages.ihm: 1.7 -> 1.8 (#362422)

This commit is contained in:
OTABI Tomoya 2024-12-07 16:34:05 +09:00 committed by GitHub
commit d2a665f7c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 ];