Merge pull request #307999 from r-ryantm/auto-update/python311Packages.fastcore

python311Packages.fastcore: 1.5.29 -> 1.5.33
This commit is contained in:
Fabian Affolter 2024-05-08 00:22:06 +02:00 committed by GitHub
commit 29681e6dd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,35 +1,35 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, packaging
, pytestCheckHook
, pythonOlder
{
lib,
buildPythonPackage,
fetchFromGitHub,
packaging,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "fastcore";
version = "1.5.29";
format = "setuptools";
version = "1.5.33";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "fastai";
repo = pname;
repo = "fastcore";
rev = "refs/tags/${version}";
hash = "sha256-yCPOF150TdkPHfLl8Jo2oow+91IzRKgnXo3eQMn5wK0=";
hash = "sha256-Zf6bNHMiYEJrLPU1w7OvEavdKIageG+sJ9W8OE/ET0M=";
};
propagatedBuildInputs = [
packaging
];
build-system = [ setuptools ];
dependencies = [ packaging ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"fastcore"
];
pythonImportsCheck = [ "fastcore" ];
meta = with lib; {
description = "Python module for Fast AI";