Commit f27a33e3 authored by hexchen's avatar hexchen
Browse files

python3Packages.itemdb: fix build

During the update to 1.3.0 it was missed that the author of the package adopted a pyproject.toml
instead of a setup.py; as well as introducing a dependency on flit-core

Fixes: 73a019ca
parent fe319d1f
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -2,12 +2,17 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  flit-core,
}:

buildPythonPackage rec {
  pname = "itemdb";
  version = "1.3.0";
  format = "setuptools";
  format = "pyproject";

  nativeBuildInputs = [
    flit-core
  ];

  # PyPI tarball doesn't include tests directory
  src = fetchFromGitHub {