about summary refs log tree commit diff
path: root/pkgs/development/python-modules/astropy-helpers
diff options
context:
space:
mode:
authorSébastien Maret <sebastien.maret@icloud.com>2019-02-14 00:45:00 +0100
committerSébastien Maret <sebastien.maret@icloud.com>2019-03-14 09:41:26 +0100
commit59a562ee35ef4d46ed4ee8358fe73cff0ae384fe (patch)
treea2cba2d65bc0d11a3dc004ca6c1cff48d595437f /pkgs/development/python-modules/astropy-helpers
parent8bb3919ea9988b845223a203e2f2a6854df11068 (diff)
pythonPackages.astropy-helpers: init at 3.1
Diffstat (limited to 'pkgs/development/python-modules/astropy-helpers')
-rw-r--r--pkgs/development/python-modules/astropy-helpers/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/astropy-helpers/default.nix b/pkgs/development/python-modules/astropy-helpers/default.nix
new file mode 100644
index 0000000000000..79d6e852c6814
--- /dev/null
+++ b/pkgs/development/python-modules/astropy-helpers/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, isPy3k
+}:
+
+buildPythonPackage rec {
+  pname = "astropy-helpers";
+  version = "3.1";
+
+  disabled = !isPy3k;
+
+  doCheck = false; # tests requires sphinx-astropy
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "37caf1f21bfdf653f7bb9f5b070dc1bb59cd70c0e09f9c5742401f57400a6e52";
+  };
+
+  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 ];
+  };
+}