lol

Merge pull request #153116 from rmcgibbo/tables

python3Packages.tables: 3.6.1 -> 3.7.0

authored by

Robert Scott and committed by
GitHub
90fb50d9 29acc14f

+4 -12
+4 -12
pkgs/development/python-modules/tables/default.nix
··· 10 10 , lzo 11 11 , numpy 12 12 , numexpr 13 - , setuptools 13 + , packaging 14 14 # Test inputs 15 15 , pytestCheckHook 16 16 }: 17 17 18 18 buildPythonPackage rec { 19 19 pname = "tables"; 20 - version = "3.6.1"; 20 + version = "3.7.0"; 21 21 disabled = pythonOlder "3.5"; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 - sha256 = "0j8vnxh2m5n0cyk9z3ndcj5n1zj5rdxgc1gb78bqlyn2lyw75aa9"; 25 + sha256 = "sha256-6SqIetbyqYPlZKaZAt5KdkXDAGn8AavTU+xdolXF4f4="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ cython ]; ··· 36 36 propagatedBuildInputs = [ 37 37 numpy 38 38 numexpr 39 - setuptools # uses pkg_resources at runtime 39 + packaging # uses packaging.version at runtime 40 40 ]; 41 41 42 - patches = [ 43 - (fetchpatch { 44 - # Needed for numpy >= 1.20.0 45 - name = "tables-pr-862-use-lowercase-numpy-dtypes.patch"; 46 - url = "https://github.com/PyTables/PyTables/commit/93a3272b8fe754095637628b4d312400e24ae654.patch"; 47 - sha256 = "00czgxnm1dxp9763va9xw1nc7dd7kxh9hjcg9klim52519hkbhi4"; 48 - }) 49 - ]; 50 42 # When doing `make distclean`, ignore docs 51 43 postPatch = '' 52 44 substituteInPlace Makefile --replace "src doc" "src"