Commit f54b4e81 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.asdf-coordinates-schemas: init at 0.3.0

parent a12aa5dc
Loading
Loading
Loading
Loading
+48 −0
Original line number Diff line number Diff line
{
  lib,
  asdf-standard,
  asdf,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,
  setuptools-scm,
  setuptools,
}:

buildPythonPackage rec {
  pname = "asdf-coordinates-schemas";
  version = "0.3.0";
  pyproject = true;

  disabled = pythonOlder "3.10";

  src = fetchFromGitHub {
    owner = "asdf-format";
    repo = "asdf-coordinates-schemas";
    rev = "refs/tags/${version}";
    hash = "sha256-LuC0m25OqQwivK/Z3OfoCtdhBV87rk16XrkJxUxG07o=";
  };

  build-system = [
    setuptools
    setuptools-scm
  ];

  dependencies = [
    asdf
    asdf-standard
  ];

  # Circular dependency with asdf-astropy
  doCheck = false;

  pythonImportsCheck = [ "asdf_coordinates_schemas" ];

  meta = with lib; {
    description = "ASDF schemas for coordinates";
    homepage = "https://github.com/asdf-format/asdf-coordinates-schemas";
    changelog = "https://github.com/asdf-format/asdf-coordinates-schemas/blob/${version}/CHANGES.rst";
    license = licenses.bsd3;
    maintainers = with maintainers; [ fab ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -787,6 +787,8 @@ self: super: with self; {
  asdf = callPackage ../development/python-modules/asdf { };
  asdf-coordinates-schemas = callPackage ../development/python-modules/asdf-coordinates-schemas { };
  asdf-standard = callPackage ../development/python-modules/asdf-standard { };
  asdf-transform-schemas = callPackage ../development/python-modules/asdf-transform-schemas { };