Files
nixpkgs/pkgs/development/python-modules/iodata/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

52 lines
958 B
Nix

{
buildPythonPackage,
lib,
fetchFromGitHub,
setuptools,
setuptools-scm,
numpy,
scipy,
attrs,
pytest-xdist,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "iodata";
version = "1.0.0a4";
pyproject = true;
src = fetchFromGitHub {
owner = "theochem";
repo = "iodata";
tag = "v${version}";
hash = "sha256-ld6V+/8lg4Du6+mHU5XuXXyMpWwyepXurerScg/bf2Q=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
numpy
scipy
attrs
];
pythonImportsCheck = [ "iodata" ];
nativeCheckInputs = [
pytest-xdist
pytestCheckHook
];
meta = with lib; {
description = "Python library for reading, writing, and converting computational chemistry file formats and generating input files";
mainProgram = "iodata-convert";
homepage = "https://github.com/theochem/iodata";
license = licenses.lgpl3Only;
maintainers = [ maintainers.sheepforce ];
};
}