Unverified Commit f9293333 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #324704 from natsukium/gemmi/init

gemmi: init at 0.6.6
parents b823bfb8 e9060eb0
Loading
Loading
Loading
Loading
+64 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromGitHub,
  cmake,
  zlib,
  enablePython ? true,
  python3Packages,
  testers,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "gemmi";
  version = "0.6.6";

  src = fetchFromGitHub {
    owner = "project-gemmi";
    repo = "gemmi";
    rev = "refs/tags/v${finalAttrs.version}";
    hash = "sha256-S31oCp6kLSYgmRaW7Q9/dMhjJ5Y0sK3WPpg2/ZMPyMg=";
  };

  nativeBuildInputs =
    [ cmake ]
    ++ lib.optionals enablePython (
      with python3Packages;
      [
        pybind11
        python
        pythonImportsCheckHook
      ]
    );

  buildInputs = [ zlib ];

  cmakeFlags = [
    (lib.cmakeBool "USE_PYTHON" enablePython)
    (lib.cmakeFeature "PYTHON_INSTALL_DIR" "${python3Packages.python.sitePackages}")
  ];

  doCheck = true;

  pythonImportsCheck = [ "gemmi" ];

  doInstallCheck = enablePython;

  nativeInstallCheckInputs = [ python3Packages.pytestCheckHook ];

  pytestFlagsArray = [ "../tests" ];

  passthru.tests = {
    version = testers.testVersion { package = finalAttrs.finalPackage; };
  };

  meta = {
    description = "Macromolecular crystallography library and utilities";
    homepage = "https://github.com/project-gemmi/gemmi";
    changelog = "https://github.com/project-gemmi/gemmi/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.mpl20;
    maintainers = with lib.maintainers; [ natsukium ];
    mainProgram = "gemmi";
    platforms = lib.platforms.unix;
  };
})
+5 −0
Original line number Diff line number Diff line
@@ -4765,6 +4765,11 @@ self: super: with self; {
  gemfileparser2 = callPackage ../development/python-modules/gemfileparser2 { };
  gemmi = toPythonModule (pkgs.gemmi.override {
    enablePython = true;
    python3Packages = self;
  });
  genanki = callPackage ../development/python-modules/genanki { };
  generic = callPackage ../development/python-modules/generic { };