Unverified Commit dbc7104d authored by natsukium's avatar natsukium
Browse files

python311Packages.ihm: init at 0.41

parent 6bc5e422
Loading
Loading
Loading
Loading
+51 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };