Unverified Commit cb1749a8 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python3Packages.sparse: 0.17.0 -> 0.18.0 (#492455)

parents ca7ccbdd 43bb25cc
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -41,6 +41,9 @@ buildPythonPackage (finalAttrs: {
    setuptools-scm
  ];

  pythonRelaxDeps = [
    "sparse"
  ];
  dependencies = [
    arviz-plots
    formulae
+6 −6
Original line number Diff line number Diff line
@@ -18,16 +18,16 @@
  pytestCheckHook,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "sparse";
  version = "0.17.0";
  version = "0.18.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pydata";
    repo = "sparse";
    tag = version;
    hash = "sha256-LYJ7YnR7WtzamK6py1NRPBe+h28L7JT+52wmourAc/c=";
    tag = finalAttrs.version;
    hash = "sha256-HHZ47TAgNbEEZj1sEe85yQRleW4Un2wfwQyFp4BPCbI=";
  };

  build-system = [
@@ -53,8 +53,8 @@ buildPythonPackage rec {
    description = "Sparse n-dimensional arrays computations";
    homepage = "https://sparse.pydata.org/";
    changelog = "https://sparse.pydata.org/en/stable/changelog.html";
    downloadPage = "https://github.com/pydata/sparse/releases/tag/${version}";
    downloadPage = "https://github.com/pydata/sparse/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ GaetanLepage ];
  };
}
})