Skip to content

Commit

Permalink
Merge pull request #304437 from r-ryantm/auto-update/python312Package…
Browse files Browse the repository at this point in the history
…s.griffe

python312Packages.griffe: 0.42.1 -> 0.42.2
  • Loading branch information
fabaff authored Apr 16, 2024
2 parents b0b7373 + 46b289a commit 2fd19c8
Showing 1 changed file with 18 additions and 25 deletions.
43 changes: 18 additions & 25 deletions pkgs/development/python-modules/griffe/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{ lib
, aiofiles
, buildPythonPackage
, colorama
, fetchFromGitHub
, git
, jsonschema
, pdm-backend
, pytestCheckHook
, pythonOlder
{
lib,
aiofiles,
buildPythonPackage,
colorama,
fetchFromGitHub,
git,
jsonschema,
pdm-backend,
pytestCheckHook,
pythonOlder,
}:

buildPythonPackage rec {
pname = "griffe";
version = "0.42.1";
version = "0.42.2";
pyproject = true;

disabled = pythonOlder "3.8";
Expand All @@ -21,16 +22,12 @@ buildPythonPackage rec {
owner = "mkdocstrings";
repo = "griffe";
rev = "refs/tags/${version}";
hash = "sha256-KaD3j96FJJx43m/nfHa4kAft4FcDOdq+2dsiaMY7PPY=";
hash = "sha256-W6aOhz8UxJUc2kNRc4JaCqFgIOXsY8ctyQ3xZ+YaD9k=";
};

nativeBuildInputs = [
pdm-backend
];
build-system = [ pdm-backend ];

propagatedBuildInputs = [
colorama
];
dependencies = [ colorama ];

nativeCheckInputs = [
git
Expand All @@ -39,21 +36,17 @@ buildPythonPackage rec {
];

passthru.optional-dependencies = {
async = [
aiofiles
];
async = [ aiofiles ];
};

pythonImportsCheck = [
"griffe"
];
pythonImportsCheck = [ "griffe" ];

meta = with lib; {
description = "Signatures for entire Python programs";
mainProgram = "griffe";
homepage = "https://github.com/mkdocstrings/griffe";
changelog = "https://github.com/mkdocstrings/griffe/blob/${version}/CHANGELOG.md";
license = licenses.isc;
maintainers = with maintainers; [ fab ];
mainProgram = "griffe";
};
}

0 comments on commit 2fd19c8

Please sign in to comment.