python3Packages.djangorestframework-csv: init at 3.0.2 (#350187)

This commit is contained in:
Yt
2024-10-22 19:01:46 -04:00
committed by GitHub
2 changed files with 54 additions and 0 deletions
@@ -0,0 +1,52 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
django,
pythonOlder,
djangorestframework,
pytestCheckHook,
pytest-django,
python,
}:
buildPythonPackage rec {
pname = "djangorestframework-csv";
version = "3.0.2";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "mjumbewu";
repo = "django-rest-framework-csv";
rev = "refs/tags/${version}";
hash = "sha256-XtMkSucB7+foRpTaRfGF1Co0n3ONNGyzex6MXR4xM5c=";
};
dependencies = [
django
djangorestframework
];
checkInputs = [
pytestCheckHook
pytest-django
];
checkPhase = ''
runHook preCheck
${python.interpreter} manage.py test
runHook postCheck
'';
pythonImportsCheck = [ "rest_framework_csv" ];
meta = {
description = "CSV Tools for Django REST Framework";
homepage = "https://github.com/mjumbewu/django-rest-framework-csv";
changelog = "https://github.com/mjumbewu/django-rest-framework-csv/releases/tag/${version}";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.onny ];
};
}
+2
View File
@@ -3518,6 +3518,8 @@ self: super: with self; {
djangorestframework-camel-case = callPackage ../development/python-modules/djangorestframework-camel-case { };
djangorestframework-csv = callPackage ../development/python-modules/djangorestframework-csv { };
djangorestframework-guardian = callPackage ../development/python-modules/djangorestframework-guardian { };
djangorestframework-guardian2 = callPackage ../development/python-modules/djangorestframework-guardian2 { };