blob: fa04d6595e8bf25a8d1851b69e6984ba76f7d27b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, numpy
, astropy
, astropy-extension-helpers
, setuptools
, setuptools-scm
, pytestCheckHook
, pytest-doctestplus
, hypothesis
}:
buildPythonPackage rec {
pname = "astropy-healpix";
version = "1.0.3";
pyproject = true;
src = fetchPypi {
inherit version;
pname = lib.replaceStrings ["-"] ["_"] pname;
hash = "sha256-3l0qfsl7FnBFBmlx8loVDR5AYfBxWb4jZJY02zbnl0Y=";
};
nativeBuildInputs = [
astropy-extension-helpers
setuptools
setuptools-scm
];
propagatedBuildInputs = [
numpy
astropy
];
nativeCheckInputs = [
pytestCheckHook
pytest-doctestplus
hypothesis
];
disabledTests = lib.optional (!stdenv.hostPlatform.isDarwin) "test_interpolate_bilinear_skycoord";
# tests must be run in the build directory
preCheck = ''
cd build/lib*
'';
meta = with lib; {
description = "BSD-licensed HEALPix for Astropy";
homepage = "https://github.com/astropy/astropy-healpix";
license = licenses.bsd3;
maintainers = [ maintainers.smaret ];
};
}
|