about summary refs log tree commit diff
path: root/pkgs/development/python-modules/casa-formats-io/default.nix
blob: 49f1b18dc8bd36e1558c0b646e90404fcc4fb389 (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
{
  lib,
  astropy,
  buildPythonPackage,
  dask,
  fetchPypi,
  numpy,
  oldest-supported-numpy,
  pythonOlder,
  setuptools-scm,
}:

buildPythonPackage rec {
  pname = "casa-formats-io";
  version = "0.3.0";
  prproject = true;

  disabled = pythonOlder "3.9";

  src = fetchPypi {
    pname = "casa_formats_io";
    inherit version;
    hash = "sha256-FpQj0XeZ7vvOzUM/+5qG6FRwNXl3gzoUBItYdQ1M4m4=";
  };

  build-system = [ setuptools-scm ];

  nativeBuildInputs = [ oldest-supported-numpy ];

  dependencies = [
    astropy
    dask
    numpy
  ];

  # Tests require a large (800 Mb) dataset
  doCheck = false;

  pythonImportsCheck = [ "casa_formats_io" ];

  meta = with lib; {
    description = "Dask-based reader for CASA data";
    homepage = "https://casa-formats-io.readthedocs.io/";
    changelog = "https://github.com/radio-astro-tools/casa-formats-io/blob/v${version}/CHANGES.rst";
    license = licenses.lgpl2Only;
    maintainers = with maintainers; [ smaret ];
  };
}