lol

Merge pull request #239642 from r-ryantm/auto-update/python310Packages.autograd

authored by

Janik and committed by
GitHub
afb2c111 33a38304

+20 -4
+20 -4
pkgs/development/python-modules/autograd/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, numpy, future }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , numpy 5 + , future 6 + , pythonOlder 7 + }: 2 8 3 9 buildPythonPackage rec { 4 10 pname = "autograd"; 5 - version = "1.5"; 11 + version = "1.6.2"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.7"; 6 15 7 16 src = fetchPypi { 8 17 inherit pname version; 9 - hash = "sha256-2AvSJRVNHbE8tOrM96GMNYvnIJJkG2hxf5b88dFqzQs="; 18 + hash = "sha256-hzHgigxOOJ2GlaQAcq2kUSZBwRO2ys6PTPvo636a7es="; 10 19 }; 11 20 12 - propagatedBuildInputs = [ numpy future ]; 21 + propagatedBuildInputs = [ 22 + numpy 23 + future 24 + ]; 13 25 14 26 # Currently, the PyPI tarball doesn't contain the tests. When that has been 15 27 # fixed, enable testing. See: https://github.com/HIPS/autograd/issues/404 16 28 doCheck = false; 29 + 30 + pythonImportsCheck = [ 31 + "autograd" 32 + ]; 17 33 18 34 meta = with lib; { 19 35 homepage = "https://github.com/HIPS/autograd";