python312Packages.dist-meta: fix hatch to be in build-system

This commit is contained in:
Grimmauld 2025-04-05 13:29:39 +02:00
parent 35dcb9bc27
commit 1ee4ee9b12

View File

@ -2,7 +2,6 @@
buildPythonPackage, buildPythonPackage,
fetchPypi, fetchPypi,
lib, lib,
setuptools,
domdf-python-tools, domdf-python-tools,
handy-archives, handy-archives,
hatchling, hatchling,
@ -20,13 +19,14 @@ buildPythonPackage rec {
hash = "sha256-+hbr1VdHRKCVlqs0IIOhHXIJ2NBc8yiR0cmFvn7Ay9c="; hash = "sha256-+hbr1VdHRKCVlqs0IIOhHXIJ2NBc8yiR0cmFvn7Ay9c=";
}; };
build-system = [ setuptools ]; build-system = [
hatchling
hatch-requirements-txt
];
dependencies = [ dependencies = [
domdf-python-tools domdf-python-tools
handy-archives handy-archives
hatchling
hatch-requirements-txt
packaging packaging
]; ];