Unverified Commit 653c2b65 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #241909 from domenkozar/pdm-bump

pdm: 2.7.0 -> 2.7.4
parents d5a10826 34c9206e
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
{ lib, python3, fetchFromGitHub, fetchPypi }:
{ lib, python3, fetchFromGitHub, fetchPypi, nix-update-script }:
let
  python = python3.override {
    # override resolvelib due to
@@ -24,13 +24,13 @@ in
with python.pkgs;
buildPythonApplication rec {
  pname = "pdm";
  version = "2.7.0";
  version = "2.7.4";
  format = "pyproject";
  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-4dyu/neMFX/U1RuI0ZEBzdbONIHvdWyvpy1Gu5iMAcg=";
    hash = "sha256-x3+N8cy31wHwBeOkMNpLihlqKCTiPmnS1avrr69uUM4=";
  };

  nativeBuildInputs = [
@@ -41,6 +41,7 @@ buildPythonApplication rec {
    blinker
    cacheyou
    certifi
    cachecontrol
    findpython
    installer
    packaging
@@ -89,6 +90,8 @@ buildPythonApplication rec {

  __darwinAllowLocalNetworking = true;

  passthru.updateScript = nix-update-script { };

  meta = with lib; {
    homepage = "https://pdm.fming.dev";
    changelog = "https://github.com/pdm-project/pdm/releases/tag/${version}";