python312Packages.qdldl: 0.1.7.post4 -> 0.1.7.post5 (#371256)

This commit is contained in:
OTABI Tomoya
2025-01-18 15:53:01 +09:00
committed by GitHub
@@ -3,28 +3,33 @@
buildPythonPackage,
fetchPypi,
cmake,
pybind11,
numpy,
pybind11,
setuptools,
scipy,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "qdldl";
version = "0.1.7.post4";
format = "setuptools";
version = "0.1.7.post5";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-DBY7mvuSxLadRGOHsdQpUJRDiwQexOhRAnG2xP8fhv0=";
hash = "sha256-CxOZ4cSbW+1arI/WPvCKtwjTQMN/tCb+ABKLwfNrKG4=";
};
dontUseCmakeConfigure = true;
nativeBuildInputs = [ cmake ];
buildInputs = [ pybind11 ];
build-system = [
cmake
numpy
pybind11
setuptools
];
propagatedBuildInputs = [
dependencies = [
numpy
scipy
];