depot/third_party/nixpkgs/pkgs/development/python-modules/drf-ujson2/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

54 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# dependencies
django,
djangorestframework,
ujson,
# tests
pytest-django,
pytest-mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "drf-ujson2";
version = "1.7.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "Amertz08";
repo = "drf_ujson2";
rev = "refs/tags/v${version}";
hash = "sha256-kbpZN1zOXHvRPcn+Sjbelq74cWgvCUeMXZy1eFSa6rA=";
};
postPatch = ''
sed -i '/--cov/d' setup.cfg
'';
buildInputs = [ django ];
propagatedBuildInputs = [
djangorestframework
ujson
];
env.DJANGO_SETTINGS_MODULE = "tests.settings";
nativeCheckInputs = [
pytest-django
pytest-mock
pytestCheckHook
];
meta = with lib; {
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";
maintainers = with maintainers; [ hexa ];
};
}