Loading pkgs/development/python-modules/djangorestframework-csv/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3514,6 +3514,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 { }; Loading Loading
pkgs/development/python-modules/djangorestframework-csv/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3514,6 +3514,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 { }; Loading