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

python3Packages.camel-converter: 5.0.0 -> 5.1.0 (#497301)

parents 74a76b4c 87004266
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -8,16 +8,16 @@
  pytest-cov-stub,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "camel-converter";
  version = "5.0.0";
  version = "5.1.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "sanders41";
    repo = "camel-converter";
    tag = "v${version}";
    hash = "sha256-ADjgs72+tzMUdg2OS2bs1sMb0kMgVqBlUfYo+RRtsvg=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-7CqwpmRGHK7mkYoIS+3NwMtEqtdtnLB463OO2Dp0Ut0=";
  };

  build-system = [ hatchling ];
@@ -30,7 +30,7 @@ buildPythonPackage rec {
    pytestCheckHook
    pytest-cov-stub
  ]
  ++ optional-dependencies.pydantic;
  ++ lib.flatten (builtins.attrValues finalAttrs.passthru.optional-dependencies);

  pythonImportsCheck = [ "camel_converter" ];

@@ -42,8 +42,8 @@ buildPythonPackage rec {
  meta = {
    description = "Module to convert strings from snake case to camel case or camel case to snake case";
    homepage = "https://github.com/sanders41/camel-converter";
    changelog = "https://github.com/sanders41/camel-converter/releases/tag/${src.tag}";
    changelog = "https://github.com/sanders41/camel-converter/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})