Unverified Commit f3235248 authored by Yt's avatar Yt Committed by GitHub
Browse files

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

parents b948e3c7 3f826e90
Loading
Loading
Loading
Loading
+52 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };