python3Packages.osqp: 1.0.5 -> 1.1.0

Diff: https://github.com/osqp/osqp-python/compare/v1.0.5...v1.1.0

Changelog: https://github.com/osqp/osqp-python/releases/tag/v1.1.0
This commit is contained in:
Gaetan Lepage
2026-01-26 22:13:42 +00:00
parent e927c1f202
commit eecc24b57d
@@ -47,16 +47,16 @@ let
};
in
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "osqp";
version = "1.0.5";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "osqp";
repo = "osqp-python";
tag = "v${version}";
hash = "sha256-i05e0GUQm9DbmF4SDZntKIssrYxC755qG3rRZjYEsiw=";
tag = "v${finalAttrs.version}";
hash = "sha256-xdxQaL794rHQmdC0cua1C/IT1qQSzzhTEf7dLrjOV9o=";
};
patches = [
@@ -107,7 +107,8 @@ buildPythonPackage rec {
'';
homepage = "https://osqp.org/";
downloadPage = "https://github.com/oxfordcontrol/osqp-python/releases";
changelog = "https://github.com/osqp/osqp-python/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
})