1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 isPy3k,
6}:
7
8buildPythonPackage rec {
9 pname = "astropy-helpers";
10 version = "4.0.1";
11 format = "setuptools";
12
13 disabled = !isPy3k;
14
15 doCheck = false; # tests requires sphinx-astropy
16
17 src = fetchPypi {
18 inherit pname version;
19 sha256 = "f1096414d108778218d6bea06d4d9c7b2ff7c83856a451331ac194e74de9f413";
20 };
21
22 meta = with lib; {
23 description = "Utilities for building and installing Astropy, Astropy affiliated packages, and their respective documentation";
24 homepage = "https://github.com/astropy/astropy-helpers";
25 license = licenses.bsd3;
26 maintainers = [ maintainers.smaret ];
27 };
28}