{ lib, buildPythonPackage, fetchPypi, setuptools, packaging, }: buildPythonPackage rec { pname = "fastcore"; version = "1.8.16"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256:1jc47l215dfc5d24pcg5zch25ingxpy1yd4afb2gndlbv08mr38d"; }; build-system = [ setuptools ]; dependencies = [ packaging ]; doCheck = false; meta = { description = "Python supercharged for fastai development"; homepage = "https://github.com/fastai/fastcore"; license = lib.licenses.asl20; }; }