python310Packages.kornia: 0.6.12 -> 0.7.0

This commit is contained in:
Ben Darwin
2023-08-30 18:22:52 -04:00
parent 076493f2e2
commit dc46b88525

View File

@@ -2,23 +2,22 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, packaging
, torch
}:
buildPythonPackage rec {
pname = "kornia";
version = "0.6.12";
version = "0.7.0";
format = "pyproject";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-qLJos1ivEws/jFK4j0Kp1ij9J9ZwCoHFRYXnlYxwPFY=";
hash = "sha256-XcQXKn4F3DIgn+XQcN5ZcGZLehd/IPBgLuGzIkPSxZg=";
};
propagatedBuildInputs = [