Unverified Commit 34734b9c authored by Luflosi's avatar Luflosi
Browse files

python3Packages.pyosmium: fix build

pyosmium was broken in https://github.com/NixOS/nixpkgs/pull/482364 by commit 2713b96b.

Version 4.1.0 replaced setuptools with scikit-build-core as the build system.
parent 9c0f4af1
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -12,7 +12,8 @@
  pybind11,
  pytest-httpserver,
  pytestCheckHook,
  setuptools,
  scikit-build-core,
  ninja,
  shapely,
  werkzeug,
  isPyPy,
@@ -34,7 +35,10 @@ buildPythonPackage rec {
    hash = "sha256-AkldgvZmn1CLa9Ze7RHBhL5wLLJ+mBnNj+yyV98nzZ8=";
  };

  build-system = [ setuptools ];
  build-system = [
    scikit-build-core
    ninja
  ];

  nativeBuildInputs = [ cmake ];