python310Packages.linear_operator: 0.4.0 -> 0.5.1

This commit is contained in:
Dmitry Kalinkin
2023-08-13 22:23:38 -04:00
parent a1fa57b4ba
commit 39151c541c
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, jaxtyping
, scipy
, torch
, pytestCheckHook
@@ -8,14 +9,14 @@
buildPythonPackage rec {
pname = "linear_operator";
version = "0.4.0";
version = "0.5.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "cornellius-gp";
repo = pname;
rev = "v${version}";
hash = "sha256-0f3F3k3xJACbx42jtwsAmjZwPAOfLywZs8VOrwWicc4=";
hash = "sha256-7NkcvVDwFaLHBZZhq7aKY3cWxe90qeKmodP6cVsdrPM=";
};
postPatch = ''
@@ -24,6 +25,7 @@ buildPythonPackage rec {
'';
propagatedBuildInputs = [
jaxtyping
scipy
torch
];