python3Packages.osqp: 1.0.5 -> 1.1.0 (#484179)

This commit is contained in:
Nick Cao
2026-01-27 00:32:59 +00:00
committed by GitHub
@@ -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 = [ ];
};
}
})