linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / jsonfield / default.nix
blob6b7faf9a312d738b395c9c98deef8184b52038fa
1 { lib, fetchPypi, buildPythonPackage, django, pytestCheckHook, pytest-django }:
3 buildPythonPackage rec {
4   pname = "jsonfield";
5   version = "3.1.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0yl828cd0m8jsyr4di6hcjdqmi31ijh5vk57mbpfl7p2gmcq8kky";
10   };
12   checkInputs = [ pytestCheckHook pytest-django ];
14   preCheck = "export DJANGO_SETTINGS_MODULE=tests.settings";
16   propagatedBuildInputs = [ django ];
18   meta = with lib; {
19     description = "Reusable model field that allows you to store validated JSON, automatically handling serialization to and from the database";
20     homepage = "https://github.com/rpkilby/jsonfield/";
21     license = licenses.mit;
22     maintainers = with maintainers; [ mrmebelman ];
23   };