Unverified Commit 74c2436d authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.nestedtext: modernize (#478985)

parents 09342621 896bf2c4
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -12,21 +12,21 @@
  voluptuous,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "nestedtext";
  version = "3.8";
  format = "pyproject";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "KenKundert";
    repo = "nestedtext";
    tag = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-eg5Q11dl9ikGpNYx2Sd47MBPC9S4W2M6PpehFpowzdk=";
  };

  nativeBuildInputs = [ flit-core ];
  build-system = [ flit-core ];

  propagatedBuildInputs = [ inform ];
  dependencies = [ inform ];

  nativeCheckInputs = [
    docopt
@@ -69,8 +69,8 @@ buildPythonPackage rec {
      non-programmers.
    '';
    homepage = "https://nestedtext.org";
    changelog = "https://github.com/KenKundert/nestedtext/blob/v${version}/doc/releases.rst";
    changelog = "https://github.com/KenKundert/nestedtext/blob/${finalAttrs.src.tag}/doc/releases.rst";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ jeremyschlatter ];
  };
}
})