From c8357a5c2f9b04ad2c43f43fed0d05d3356f8eff Mon Sep 17 00:00:00 2001 From: Anthony ROUSSEL Date: Tue, 6 May 2025 21:25:01 +0200 Subject: [PATCH] python312Packages.pastedeploy: fix hash --- .../development/python-modules/pastedeploy/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/pastedeploy/default.nix b/pkgs/development/python-modules/pastedeploy/default.nix index 4edafccb3cdc..945a07d525dd 100644 --- a/pkgs/development/python-modules/pastedeploy/default.nix +++ b/pkgs/development/python-modules/pastedeploy/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "Pylons"; repo = "pastedeploy"; tag = version; - hash = "sha256-8MNeOcYPEYAfghZN/K/1v/tAAdgz/fCvuVnBoru+81Q="; + hash = "sha256-yR7UxAeF0fQrbU7tl29GpPeEAc4YcxHdNQWMD67pP3g="; }; postPatch = '' @@ -32,11 +32,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "paste.deploy" ]; - meta = with lib; { + meta = { description = "Load, configure, and compose WSGI applications and servers"; homepage = "https://github.com/Pylons/pastedeploy"; - changelog = "https://github.com/Pylons/pastedeploy/blob/${version}/docs/news.rst"; - license = licenses.mit; - teams = [ teams.openstack ]; + changelog = "https://github.com/Pylons/pastedeploy/blob/${src.tag}/docs/news.rst"; + license = lib.licenses.mit; + teams = [ lib.teams.openstack ]; }; }