lol

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