bb584b27e9
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
57 lines
939 B
Nix
57 lines
939 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, fetchpatch
|
|
, numpy
|
|
, astropy
|
|
, astropy-helpers
|
|
, matplotlib
|
|
, reproject
|
|
, pyavm
|
|
, pyregion
|
|
, pillow
|
|
, scikitimage
|
|
, cython
|
|
, shapely
|
|
, pytest
|
|
, pytest-astropy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aplpy";
|
|
version = "2.1.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
pname = "aplpy";
|
|
inherit version;
|
|
sha256 = "sha256-KCdmBwQWt7IfHsjq7pWlbSISEpfQZDyt+SQSTDaUCV4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
cython
|
|
astropy
|
|
matplotlib
|
|
reproject
|
|
pyavm
|
|
pyregion
|
|
pillow
|
|
scikitimage
|
|
shapely
|
|
];
|
|
|
|
nativeBuildInputs = [ astropy-helpers ];
|
|
checkInputs = [ pytest pytest-astropy ];
|
|
|
|
checkPhase = ''
|
|
OPENMP_EXPECTED=0 pytest aplpy
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "The Astronomical Plotting Library in Python";
|
|
homepage = "http://aplpy.github.io";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.smaret ];
|
|
};
|
|
}
|