mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
python3Packages.django-import-export: add changelog to meta
This commit is contained in:
parent
9086b530ff
commit
9c9c1bc9a9
@ -1,10 +1,11 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildPythonPackage
|
||||
, python
|
||||
, chardet
|
||||
, django
|
||||
, diff-match-patch
|
||||
, django
|
||||
, fetchFromGitHub
|
||||
, python
|
||||
, pythonOlder
|
||||
, pytz
|
||||
, tablib
|
||||
}:
|
||||
@ -12,18 +13,27 @@
|
||||
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 = version;
|
||||
sha256 = "sha256-km6TQq4OZZtx9/lgBzS3tEifAYjkkUX//9FRATDLX/0=";
|
||||
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);
|
||||
propagatedBuildInputs = [
|
||||
diff-match-patch
|
||||
django
|
||||
tablib
|
||||
] ++ (with tablib.optional-dependencies; html ++ ods ++ xls ++ xlsx ++ yaml);
|
||||
|
||||
checkInputs = [ chardet pytz ];
|
||||
checkInputs = [
|
||||
chardet
|
||||
pytz
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
@ -31,11 +41,14 @@ buildPythonPackage rec {
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "import_export" ];
|
||||
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 ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user