Files
nixpkgs/pkgs/development/python-modules/drf-ujson2/default.nix
T
Robert Schütz 1a04744f74 treewide: remove superfluous disabled
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:

    pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
    for f in $(find -name '*.nix'); do
        grep -q "$pattern" "$f" || continue
        sed -i "/$pattern/d" "$f"
        if [ $(grep -c pythonOlder "$f") == 1 ]; then
            sed -i '/^\s*pythonOlder,\s*$/d' "$f"
        fi
        nixfmt "$f"
    done
2026-01-11 09:34:20 -08:00

58 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
django,
djangorestframework,
ujson,
# tests
pytest-cov-stub,
pytest-django,
pytest-mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "drf-ujson2";
version = "1.8.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Amertz08";
repo = "drf_ujson2";
tag = "v${version}";
hash = "sha256-NtloZWsEmRbPl7pdxPQqpzIzTyyOEFO9KtZ60F7VuUQ=";
};
build-system = [ setuptools ];
dependencies = [
django
djangorestframework
ujson
];
env.DJANGO_SETTINGS_MODULE = "tests.settings";
nativeCheckInputs = [
pytest-cov-stub
pytest-django
pytest-mock
pytestCheckHook
];
meta = {
changelog = "https://github.com/Amertz08/drf_ujson2/releases/tag/v${version}";
description = "JSON parser and renderer using ujson for Django Rest Framework";
homepage = "https://github.com/Amertz08/drf_ujson2";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hexa ];
};
}