depot/third_party/nixpkgs/pkgs/development/python-modules/ihm/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

51 lines
970 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, swig
, wheel
, msgpack
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "ihm";
version = "1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ihmwg";
repo = "python-ihm";
rev = "refs/tags/${version}";
hash = "sha256-a1M3YihN71M9TnkldAzN6N1UuPksDk6SPiBgr4HyC8g=";
};
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 ];
};
}