10 buildPythonPackage rec {
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
18 inherit pname version;
19 hash = "sha256-hzHgigxOOJ2GlaQAcq2kUSZBwRO2ys6PTPvo636a7es=";
22 propagatedBuildInputs = [
27 # Currently, the PyPI tarball doesn't contain the tests. When that has been
28 # fixed, enable testing. See: https://github.com/HIPS/autograd/issues/404
31 pythonImportsCheck = [ "autograd" ];
34 homepage = "https://github.com/HIPS/autograd";
35 description = "Compute derivatives of NumPy code efficiently";
36 license = licenses.mit;
37 maintainers = with maintainers; [ jluttine ];