about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/aplpy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/aplpy/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/aplpy/default.nix70
1 files changed, 70 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/aplpy/default.nix b/nixpkgs/pkgs/development/python-modules/aplpy/default.nix
new file mode 100644
index 000000000000..47a1de3c0d8d
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/aplpy/default.nix
@@ -0,0 +1,70 @@
+{ lib
+, astropy
+, astropy-helpers
+, buildPythonPackage
+, cython
+, fetchpatch
+, fetchPypi
+, matplotlib
+, numpy
+, pillow
+, pyavm
+, pyregion
+, pytest-astropy
+, pytestCheckHook
+, pythonOlder
+, reproject
+, scikitimage
+, shapely
+}:
+
+buildPythonPackage rec {
+  pname = "aplpy";
+  version = "2.1.0";
+  format = "pyproject";
+
+  disabled = pythonOlder "3.6";
+
+  src = fetchPypi {
+    pname = "aplpy";
+    inherit version;
+    hash = "sha256-KCdmBwQWt7IfHsjq7pWlbSISEpfQZDyt+SQSTDaUCV4=";
+  };
+
+  nativeBuildInputs = [
+    astropy-helpers
+  ];
+
+  propagatedBuildInputs = [
+    astropy
+    cython
+    matplotlib
+    numpy
+    pillow
+    pyavm
+    pyregion
+    reproject
+    scikitimage
+    shapely
+  ];
+
+  checkInputs = [
+    pytest-astropy
+    pytestCheckHook
+  ];
+
+  preCheck = ''
+    OPENMP_EXPECTED=0
+  '';
+
+  pythonImportsCheck = [
+    "aplpy"
+  ];
+
+  meta = with lib; {
+    description = "The Astronomical Plotting Library in Python";
+    homepage = "http://aplpy.github.io";
+    license = licenses.mit;
+    maintainers = with maintainers; [ smaret ];
+  };
+}