1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
81 lines
1.5 KiB
Nix
81 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
cython,
|
|
datamodeldict,
|
|
fetchFromGitHub,
|
|
matplotlib,
|
|
numericalunits,
|
|
numpy,
|
|
pandas,
|
|
phonopy,
|
|
potentials,
|
|
pytestCheckHook,
|
|
requests,
|
|
scipy,
|
|
setuptools,
|
|
toolz,
|
|
xmltodict,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "atomman";
|
|
version = "1.5.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "usnistgov";
|
|
repo = "atomman";
|
|
tag = "v${version}";
|
|
hash = "sha256-UmvMYVM1YmLvSaVLzWHdxYpRU+Z3z65cy7mfmDZfDG0=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
numpy
|
|
cython
|
|
];
|
|
|
|
dependencies = [
|
|
datamodeldict
|
|
matplotlib
|
|
numericalunits
|
|
numpy
|
|
pandas
|
|
potentials
|
|
requests
|
|
scipy
|
|
toolz
|
|
xmltodict
|
|
];
|
|
|
|
pythonRelaxDeps = [ "atomman" ];
|
|
|
|
preCheck = ''
|
|
# By default, pytestCheckHook imports atomman from the current directory
|
|
# instead of from where `pip` installs it and fails due to missing Cython
|
|
# modules. Fix this by removing atomman from the current directory.
|
|
#
|
|
rm -r atomman
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
phonopy
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_unique_shifts_prototype" # needs network access to download database files
|
|
];
|
|
|
|
pythonImportsCheck = [ "atomman" ];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/usnistgov/atomman/blob/${src.rev}/UPDATES.rst";
|
|
description = "Atomistic Manipulation Toolkit";
|
|
homepage = "https://github.com/usnistgov/atomman/";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|