11 buildPythonPackage rec {
16 disabled = pythonOlder "3.8";
19 inherit pname version;
20 hash = "sha256-3nQ/02jW31I803MF3NFxhhqXUqFESTZ30sn1pWmD/y8=";
23 build-system = [ hatchling ];
25 dependencies = [ numpy ];
27 nativeCheckInputs = [ pytestCheckHook ];
29 pythonImportsCheck = [ "autograd" ];
32 description = "Compute derivatives of NumPy code efficiently";
33 homepage = "https://github.com/HIPS/autograd";
34 changelog = "https://github.com/HIPS/autograd/releases/tag/v${version}";
35 license = licenses.mit;
36 maintainers = with maintainers; [ jluttine ];