From 29d27bf965c4d33c1dcfb78e8e6b11c79c99b7a0 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 19 Jan 2025 21:19:00 +0100 Subject: [PATCH] python3Packages.types-pyyaml: 6.0.12.20240917 -> 6.0.12.20241230 --- .../python-modules/types-pyyaml/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/types-pyyaml/default.nix b/pkgs/development/python-modules/types-pyyaml/default.nix index 31fe7ac1de19..807055176040 100644 --- a/pkgs/development/python-modules/types-pyyaml/default.nix +++ b/pkgs/development/python-modules/types-pyyaml/default.nix @@ -2,19 +2,22 @@ lib, buildPythonPackage, fetchPypi, + setuptools, }: buildPythonPackage rec { pname = "types-pyyaml"; - version = "6.0.12.20240917"; - format = "setuptools"; + version = "6.0.12.20241230"; + pyproject = true; src = fetchPypi { - pname = "types-PyYAML"; + pname = "types_pyyaml"; inherit version; - hash = "sha256-0UBahvlXZoIjTvg7y05v/3yTBcix+61eC81Pfb3JxYc="; + hash = "sha256-fwdiLb00u5yLJk/oYKF+DvytANULXyfpOYSQnZNjSYw="; }; + build-system = [ setuptools ]; + # Module doesn't have tests doCheck = false;