567e8dfd8e
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>
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
asdf-coordinates-schemas,
|
|
asdf-standard,
|
|
asdf-transform-schemas,
|
|
asdf,
|
|
astropy,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
numpy,
|
|
packaging,
|
|
pytest-astropy-header,
|
|
pytest-doctestplus,
|
|
pytestCheckHook,
|
|
scipy,
|
|
setuptools-scm,
|
|
setuptools,
|
|
writableTmpDirAsHomeHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "asdf-astropy";
|
|
version = "0.9.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "astropy";
|
|
repo = "asdf-astropy";
|
|
tag = version;
|
|
hash = "sha256-JYzC1dEnq1caNSPffWCgk7c3mgUERywP0ladS+RwEnk=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dependencies = [
|
|
asdf
|
|
asdf-coordinates-schemas
|
|
asdf-standard
|
|
asdf-transform-schemas
|
|
astropy
|
|
numpy
|
|
packaging
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-astropy-header
|
|
pytest-doctestplus
|
|
pytestCheckHook
|
|
scipy
|
|
writableTmpDirAsHomeHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "asdf_astropy" ];
|
|
|
|
meta = {
|
|
description = "Extension library for ASDF to provide support for Astropy";
|
|
homepage = "https://github.com/astropy/asdf-astropy";
|
|
changelog = "https://github.com/astropy/asdf-astropy/blob/${src.tag}/CHANGES.rst";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|