33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, chardet
|
|
, diff-match-patch
|
|
, django
|
|
, fetchFromGitHub
|
|
, python
|
|
, pythonOlder
|
|
, pytz
|
|
, tablib
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-import-export";
|
|
version = "2.8.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "django-import-export";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-km6TQq4OZZtx9/lgBzS3tEifAYjkkUX//9FRATDLX/0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
diff-match-patch
|
|
django
|
|
tablib
|
|
] ++ (with tablib.optional-dependencies; html ++ ods ++ xls ++ xlsx ++ yaml);
|
|
|
|
nativeCheckInputs = [
|
|
chardet
|
|
pytz
|
|
];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
${python.interpreter} tests/manage.py test core --settings=settings
|
|
runHook postCheck
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"import_export"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Django application and library for importing and exporting data with admin integration";
|
|
homepage = "https://github.com/django-import-export/django-import-export";
|
|
changelog = "https://github.com/django-import-export/django-import-export/blob/${version}/docs/changelog.rst";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ sephi ];
|
|
};
|
|
}
|