Unverified Commit 2c5f28ae authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

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

parents 123aff1e eecc24b5
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -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 = [ ];
  };
}
})