nixpkgs/pkgs/development/python-modules/aplpy/default.nix

65 lines
1.3 KiB
Nix
Raw Normal View History

2019-02-13 16:22:16 +01:00
{ lib
, buildPythonPackage
, fetchPypi
2020-12-28 20:50:25 +01:00
, fetchpatch
2019-02-13 16:22:16 +01:00
, numpy
, astropy
, astropy-helpers
, matplotlib
, reproject
, pyavm
, pyregion
, pillow
, scikitimage
, shapely
2019-07-23 12:50:21 +02:00
, pytest
, pytest-astropy
2019-02-13 16:22:16 +01:00
}:
buildPythonPackage rec {
pname = "aplpy";
version = "2.0.3";
2020-12-28 20:50:25 +01:00
format = "pyproject";
2019-02-13 16:22:16 +01:00
src = fetchPypi {
pname = "APLpy";
inherit version;
sha256 = "239f3d83635ca4251536aeb577df7c60df77fc4d658097b92094719739aec3f3";
};
2020-12-28 20:50:25 +01:00
patches = [ (fetchpatch {
# Can be removed in next release after 2.0.3
url = "https://github.com/aplpy/aplpy/pull/448.patch";
sha256 = "1pnzh7ykjc8hwahzbzyryrzv5a8fddgd1bmzbhagkrn6lmvhhpvq";
excludes = [ "tox.ini" "azure-pipelines.yml" ".circleci/config.yml" "MANIFEST.in" ".gitignore"
"setup.cfg" "appveyor.yml" "readthedocs.yml" "CHANGES.rst" ".gitmodules" ".travis.yml" "astropy_helpers" ];
})
];
2019-02-13 16:22:16 +01:00
propagatedBuildInputs = [
numpy
astropy
matplotlib
reproject
pyavm
pyregion
pillow
scikitimage
shapely
];
2019-07-23 12:50:21 +02:00
nativeBuildInputs = [ astropy-helpers ];
checkInputs = [ pytest pytest-astropy ];
checkPhase = ''
2020-12-28 20:50:25 +01:00
OPENMP_EXPECTED=0 pytest aplpy
2019-07-23 12:50:21 +02:00
'';
2019-02-13 16:22:16 +01:00
meta = with lib; {
description = "The Astronomical Plotting Library in Python";
homepage = "http://aplpy.github.io";
2019-02-13 16:22:16 +01:00
license = licenses.mit;
maintainers = [ maintainers.smaret ];
};
}