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

Merge pull request #229187 from fabaff/docstring-parser-bump

python310Packages.docstring-parser: 0.14.1 -> 0.15
parents 09c89412 1a817360
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@

buildPythonPackage rec {
  pname = "docstring-parser";
  version = "0.14.1";
  version = "0.15";
  format = "pyproject";

  disabled = pythonOlder "3.7";
@@ -16,8 +16,8 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "rr-";
    repo = "docstring_parser";
    rev = "${version}";
    hash = "sha256-NIijq+QR0panVCGDEQrTlkAvHfIexwS0PxFikglxd74=";
    rev = "refs/tags/${version}";
    hash = "sha256-rnDitZn/xI0I9KMQv6gxzVYevWUymDgyFETjAnRlEHw=";
  };

  nativeBuildInputs = [
@@ -35,6 +35,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Parse Python docstrings in various flavors";
    homepage = "https://github.com/rr-/docstring_parser";
    changelog = "https://github.com/rr-/docstring_parser/blob/${version}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ SomeoneSerge ];
  };