Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5}: 6 7buildPythonPackage rec { 8 pname = "astropy-helpers"; 9 version = "4.0.1"; 10 11 disabled = !isPy3k; 12 13 doCheck = false; # tests requires sphinx-astropy 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "f1096414d108778218d6bea06d4d9c7b2ff7c83856a451331ac194e74de9f413"; 18 }; 19 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 }; 26}