Unverified Commit eaa625f3 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python3Packages.asdf-astropy: 0.10.0 -> 0.11.0 (#504636)

parents b269e412 46d9fd02
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -18,16 +18,16 @@
  writableTmpDirAsHomeHook,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "asdf-astropy";
  version = "0.10.0";
  version = "0.11.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "astropy";
    repo = "asdf-astropy";
    tag = version;
    hash = "sha256-8atPmtVWb+4Dj1Lf0UIusBtAIW7lF5D+1ay7G7Ay3PA=";
    tag = finalAttrs.version;
    hash = "sha256-dHi+VFMo5RcJAIExR8OFTljtG3P/VXT2jzkbBobwVKg=";
  };

  postPatch = ''
@@ -63,8 +63,8 @@ buildPythonPackage rec {
  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";
    changelog = "https://github.com/astropy/asdf-astropy/blob/${finalAttrs.src.tag}/CHANGES.rst";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})