nixpkgs/pkgs/development/python-modules/seekpath/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

53 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
numpy,
future,
spglib,
glibcLocales,
pytest,
scipy,
}:
buildPythonPackage rec {
pname = "seekpath";
version = "2.0.1";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "giovannipizzi";
repo = pname;
rev = "v${version}";
sha256 = "0x592650ynacmx5n5bilj5lja4iw0gf1nfypy82cmy5z363qhqxn";
};
LC_ALL = "en_US.utf-8";
# scipy isn't listed in install_requires, but used in package
propagatedBuildInputs = [
numpy
spglib
future
scipy
];
nativeBuildInputs = [ glibcLocales ];
nativeCheckInputs = [ pytest ];
# I don't know enough about crystal structures to fix
checkPhase = ''
pytest . -k 'not oI2Y'
'';
meta = with lib; {
description = "Module to obtain and visualize band paths in the Brillouin zone of crystal structures";
homepage = "https://github.com/giovannipizzi/seekpath";
license = licenses.mit;
maintainers = with maintainers; [ psyanticy ];
};
}