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

authored by

OTABI Tomoya and committed by
GitHub
d2a665f7 54e82959

+6 -9
+6 -9
pkgs/development/python-modules/ihm/default.nix
··· 4 4 fetchFromGitHub, 5 5 setuptools, 6 6 swig, 7 - wheel, 8 7 msgpack, 9 8 pytestCheckHook, 10 9 }: 11 10 12 11 buildPythonPackage rec { 13 12 pname = "ihm"; 14 - version = "1.7"; 13 + version = "1.8"; 15 14 pyproject = true; 16 15 17 16 src = fetchFromGitHub { 18 17 owner = "ihmwg"; 19 18 repo = "python-ihm"; 20 19 rev = "refs/tags/${version}"; 21 - hash = "sha256-jQm8Xl2yyR+y1Leyz8naT1rFJpgK5XdUd7YgnhDuBWo="; 20 + hash = "sha256-Uz/4Egd7swY4kDl6FR564eiaYEdY9IUoz2Lv5pJ1C30="; 22 21 }; 23 22 24 - nativeBuildInputs = [ 25 - setuptools 26 - swig 27 - wheel 28 - ]; 23 + nativeBuildInputs = [ swig ]; 24 + 25 + build-system = [ setuptools ]; 29 26 30 - propagatedBuildInputs = [ msgpack ]; 27 + dependencies = [ msgpack ]; 31 28 32 29 nativeCheckInputs = [ pytestCheckHook ]; 33 30