9 buildPythonPackage rec {
10 pname = "astropy-helpers";
12 format = "setuptools";
14 # ModuleNotFoundError: No module named 'imp'
15 disabled = !isPy3k || pythonAtLeast "3.12";
17 doCheck = false; # tests requires sphinx-astropy
20 inherit pname version;
21 sha256 = "f1096414d108778218d6bea06d4d9c7b2ff7c83856a451331ac194e74de9f413";
25 description = "Utilities for building and installing Astropy, Astropy affiliated packages, and their respective documentation";
26 homepage = "https://github.com/astropy/astropy-helpers";
27 license = licenses.bsd3;
28 maintainers = [ maintainers.smaret ];