python312Packages.clifford: migrate to build-system

This commit is contained in:
Corinna Raab 2024-04-11 08:47:10 +02:00
parent 13ceab7595
commit 54ad90b9cd

View File

@ -7,6 +7,7 @@
, numba , numba
, numpy , numpy
, pytestCheckHook , pytestCheckHook
, setuptools
, scipy , scipy
, sparse , sparse
}: }:
@ -14,7 +15,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "clifford"; pname = "clifford";
version = "1.4.0"; version = "1.4.0";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
@ -23,7 +24,11 @@ buildPythonPackage rec {
hash = "sha256-eVE8FrD0YHoRreY9CrNb8v4v4KrG83ZU0oFz+V+p+Q0="; hash = "sha256-eVE8FrD0YHoRreY9CrNb8v4v4KrG83ZU0oFz+V+p+Q0=";
}; };
propagatedBuildInputs = [ build-system = [
setuptools
];
dependencies = [
h5py h5py
numba numba
numpy numpy