python3Packages.pandas: 1.4.3 -> 1.4.4

https://github.com/pandas-dev/pandas/releases/tag/v1.4.4
This commit is contained in:
Martin Weinelt 2022-09-14 13:51:32 +02:00
parent b465fcfef3
commit f1ebf7751e

View File

@ -3,6 +3,7 @@
, buildPythonPackage
, fetchPypi
, python
, pythonOlder
, cython
, numpy
, python-dateutil
@ -27,12 +28,13 @@
buildPythonPackage rec {
pname = "pandas";
version = "1.4.3";
version = "1.4.4";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-L/d4hGjnWRdXTwgM1GgbJ+GnvzZGH+lotJqHtaVNAHw=";
hash = "sha256-q2wNc4YXtnUYPl8o2zK1FItpStm7oKQMPqJtlrQx22c=";
};
nativeBuildInputs = [ cython ];