python310Packages.soxr: add missing oldest-supported-numpy dependency

This commit is contained in:
Theodore Ni 2023-08-26 00:45:23 -07:00
parent d07f7a9cd1
commit 118c2681fb
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -2,9 +2,10 @@
, buildPythonPackage
, fetchFromGitHub
# build-sytem
# build-system
, cython_3
, numpy
, oldest-supported-numpy
, setuptools
, setuptools-scm
, gnutar
@ -29,12 +30,13 @@ buildPythonPackage rec {
hash = "sha256-q/K7XlqvDHAna+fqN6iiJ9wD8efsuwHiEfKjXS46jz8=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
cython_3
gnutar
numpy
oldest-supported-numpy
setuptools
setuptools-scm
];