python310Packages.django-import-export: 3.1.0 -> 3.2.0

Changelog: https://github.com/django-import-export/django-import-export/blob/3.2.0/docs/changelog.rst
This commit is contained in:
Fabian Affolter 2023-05-01 14:40:00 +02:00
parent 5df4516c36
commit 040cf878bf

View file

@ -4,6 +4,7 @@
, diff-match-patch
, django
, fetchFromGitHub
, psycopg2
, python
, pythonOlder
, pytz
@ -12,7 +13,7 @@
buildPythonPackage rec {
pname = "django-import-export";
version = "3.1.0";
version = "3.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -21,7 +22,7 @@ buildPythonPackage rec {
owner = "django-import-export";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-GvauDAkQd8dVCgon8nC7FPW4yLM7kS72g8bOBwt9RuY=";
hash = "sha256-ws9gUPCr5nM8HGbCt9+6IFjLgAKiCMQRkY/yfIb2mng=";
};
propagatedBuildInputs = [
@ -32,6 +33,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
chardet
psycopg2
pytz
];