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

python3Packages.jsonargparse: 4.45.0 -> 4.46.0 (#487793)

parents a7a9ce32 9e2d2397
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -21,16 +21,16 @@
  typeshed-client,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "jsonargparse";
  version = "4.45.0";
  version = "4.46.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "omni-us";
    repo = "jsonargparse";
    tag = "v${version}";
    hash = "sha256-bp1oQAVlFSNecE2vOyekfA8ij5Pq2PK0fasTIpoKmqs=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-YLryV70RV4TH86ysllMXyCsZp7xr1LRFwKU1PjvoilA=";
  };

  build-system = [ setuptools ];
@@ -79,8 +79,8 @@ buildPythonPackage rec {
  meta = {
    description = "Module to implement minimal boilerplate CLIs derived from various sources";
    homepage = "https://github.com/omni-us/jsonargparse";
    changelog = "https://github.com/omni-us/jsonargparse/blob/${src.tag}/CHANGELOG.rst";
    changelog = "https://github.com/omni-us/jsonargparse/blob/${finalAttrs.src.tag}/CHANGELOG.rst";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})