python3Packages.itemdb: fix build (#443988)

authored by pyrox.dev and committed by GitHub 3946b7de 983f134a

+6 -1
+6 -1
pkgs/development/python-modules/itemdb/default.nix
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 }: 6 7 buildPythonPackage rec { 8 pname = "itemdb"; 9 version = "1.3.0"; 10 - format = "setuptools"; 11 12 # PyPI tarball doesn't include tests directory 13 src = fetchFromGitHub {
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 + flit-core, 6 }: 7 8 buildPythonPackage rec { 9 pname = "itemdb"; 10 version = "1.3.0"; 11 + format = "pyproject"; 12 + 13 + nativeBuildInputs = [ 14 + flit-core 15 + ]; 16 17 # PyPI tarball doesn't include tests directory 18 src = fetchFromGitHub {