{ lib, buildPythonPackage, fetchFromGitHub, packaging, setuptools, }: buildPythonPackage rec { pname = "fastcore"; version = "1.11.0"; pyproject = true; src = fetchFromGitHub { owner = "fastai"; repo = "fastcore"; tag = version; hash = "sha256-mzOarqm7ng4Jz+z5CNjmff8j0wfNGSYjR2LNhtRfmhc="; }; build-system = [ setuptools ]; dependencies = [ packaging ]; # Module has no tests doCheck = false; pythonImportsCheck = [ "fastcore" ]; meta = { description = "Python module for Fast AI"; homepage = "https://github.com/fastai/fastcore"; changelog = "https://github.com/fastai/fastcore/blob/${src.tag}/CHANGELOG.md"; license = with lib.licenses; [ asl20 ]; maintainers = with lib.maintainers; [ fab ]; }; }