Files
nixpkgs/pkgs/development/python-modules/ihm/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

46 lines
936 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
swig,
msgpack,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "ihm";
version = "2.7";
pyproject = true;
src = fetchFromGitHub {
owner = "ihmwg";
repo = "python-ihm";
tag = version;
hash = "sha256-ZMHVYuNcUjhMKJUr5bCIELO6F0CNi0ESfbsBm5vOiA4=";
};
nativeBuildInputs = [ swig ];
build-system = [ setuptools ];
dependencies = [ msgpack ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# requires network access
"test_validator_example"
];
pythonImportsCheck = [ "ihm" ];
meta = {
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.tag}/ChangeLog.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ natsukium ];
};
}