fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
30 lines
748 B
Nix
30 lines
748 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
isPy3k,
|
|
pythonAtLeast,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "astropy-helpers";
|
|
version = "4.0.1";
|
|
format = "setuptools";
|
|
|
|
# ModuleNotFoundError: No module named 'imp'
|
|
disabled = !isPy3k || pythonAtLeast "3.12";
|
|
|
|
doCheck = false; # tests requires sphinx-astropy
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "f1096414d108778218d6bea06d4d9c7b2ff7c83856a451331ac194e74de9f413";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Utilities for building and installing Astropy, Astropy affiliated packages, and their respective documentation";
|
|
homepage = "https://github.com/astropy/astropy-helpers";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.smaret ];
|
|
};
|
|
}
|