ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / astropy-helpers / default.nix
blobdd8897ab1390789f3dd1b0b0f3123a4c31ed4067
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy3k
5 }:
7 buildPythonPackage rec {
8   pname = "astropy-helpers";
9   version = "4.0.1";
11   disabled = !isPy3k;
13   doCheck = false; # tests requires sphinx-astropy
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "f1096414d108778218d6bea06d4d9c7b2ff7c83856a451331ac194e74de9f413";
18   };
20   meta = with lib; {
21     description = "Utilities for building and installing Astropy, Astropy affiliated packages, and their respective documentation";
22     homepage = "https://github.com/astropy/astropy-helpers";
23     license = licenses.bsd3;
24     maintainers = [ maintainers.smaret ];
25   };