Files
nixpkgs/pkgs/development/python-modules/casa-formats-io/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

50 lines
1008 B
Nix

{
lib,
astropy,
buildPythonPackage,
dask,
fetchPypi,
numpy,
oldest-supported-numpy,
pythonOlder,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "casa-formats-io";
version = "0.3.0";
format = "setuptools";
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 = {
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 = lib.licenses.lgpl2Only;
maintainers = with lib.maintainers; [ smaret ];
};
}