From c20e372ed2cffcd2bdf8892f06943435c64fe11d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 28 Aug 2025 17:35:55 +0200 Subject: [PATCH] python313Packages.python-codon-tables: modernize --- .../python-modules/python-codon-tables/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/python-codon-tables/default.nix b/pkgs/development/python-modules/python-codon-tables/default.nix index af72906af4eb..50a2c3b8aec6 100644 --- a/pkgs/development/python-modules/python-codon-tables/default.nix +++ b/pkgs/development/python-modules/python-codon-tables/default.nix @@ -2,12 +2,13 @@ lib, buildPythonPackage, fetchPypi, + setuptools, }: buildPythonPackage rec { pname = "python-codon-tables"; version = "0.1.18"; - format = "setuptools"; + pyproject = true; src = fetchPypi { pname = "python_codon_tables"; @@ -15,6 +16,8 @@ buildPythonPackage rec { hash = "sha256-c/VSmArSkq+46LzW3r+CQEG1mwp87ACbZ7EWkMOGOQc="; }; + build-system = [ setuptools ]; + # no tests in tarball doCheck = false;