Commit eecc24b5 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent e927c1f2
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 = [ ];
  };
}
})