about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/aplpy/default.nix
blob: a173a58032d9e7c7bfdafe8ecc5c5c2a2e5b0ab4 (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
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, astropy
, astropy-helpers
, matplotlib
, reproject
, pyavm
, pyregion
, pillow
, scikitimage
, shapely
}:

buildPythonPackage rec {
  pname = "aplpy";
  version = "2.0.3";

  doCheck = false; # tests require pytest-astropy

  src = fetchPypi {
    pname = "APLpy";
    inherit version;
    sha256 = "239f3d83635ca4251536aeb577df7c60df77fc4d658097b92094719739aec3f3";
  };

  propagatedBuildInputs = [
    numpy
    astropy
    astropy-helpers
    matplotlib
    reproject
    pyavm
    pyregion
    pillow
    scikitimage
    shapely
  ];

  # Disable automatic update of the astropy-helper module
  postPatch = ''
    substituteInPlace setup.cfg --replace "auto_use = True" "auto_use = False"
  '';

  meta = with lib; {
    description = "The Astronomical Plotting Library in Python";
    homepage = http://aplpy.github.io;
    license = licenses.mit;
    maintainers = [ maintainers.smaret ];
  };
}