nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #198832 from fabaff/griffe-bump

python310Packages.griffe: 0.22.2 -> 0.23.0

authored by

Fabian Affolter and committed by
GitHub
ce794c0e 4d093210

+9 -7
+9 -7
pkgs/development/python-modules/griffe/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "griffe"; 14 - version = "0.22.2"; 14 + version = "0.23.0"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "mkdocstrings"; 21 21 repo = pname; 22 22 rev = version; 23 - hash = "sha256-mkYtfO+wZ4vIdpCzum9uwoKMv1Xn0few8ywbvrEwxj8="; 23 + hash = "sha256-eoWOkAwAd3ab9+uUfAdrYhkheibfGYkuoNQX/3nS57w="; 24 24 }; 25 + 26 + postPatch = '' 27 + substituteInPlace pyproject.toml \ 28 + --replace 'dynamic = ["version"]' 'version = "${version}"' \ 29 + --replace 'license = "ISC"' 'license = {file = "LICENSE"}' \ 30 + --replace 'version = {source = "scm"}' 'license-expression = "ISC"' 31 + ''; 25 32 26 33 nativeBuildInputs = [ 27 34 pdm-pep517 ··· 48 41 aiofiles 49 42 ]; 50 43 }; 51 - 52 - postPatch = '' 53 - substituteInPlace pyproject.toml \ 54 - --replace 'dynamic = ["version"]' 'version = "${version}"' 55 - ''; 56 44 57 45 pythonImportsCheck = [ 58 46 "griffe"