pdm: 2.10.0 -> 2.10.1

Changelog: https://github.com/pdm-project/pdm/releases/tag/2.10.1
This commit is contained in:
natsukium 2023-11-07 17:03:01 +09:00
parent 4f5d927e6d
commit 5b6fd0247a
No known key found for this signature in database
GPG key ID: 9EA45A31DB994C53

View file

@ -32,13 +32,13 @@ in
with python.pkgs;
buildPythonApplication rec {
pname = "pdm";
version = "2.10.0";
version = "2.10.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ziJJWVr59hsJJqCJljLfSbHHESYegFak+uFLU/k9kZM=";
hash = "sha256-0WZTHGWfxJBZM1RlRN0uFs9kjCum2JjIISatakIReoE=";
};
patches = [
@ -112,7 +112,7 @@ buildPythonApplication rec {
passthru.updateScript = nix-update-script { };
meta = with lib; {
homepage = "https://pdm.fming.dev";
homepage = "https://pdm-project.org";
changelog = "https://github.com/pdm-project/pdm/releases/tag/${version}";
description = "A modern Python package manager with PEP 582 support";
license = licenses.mit;