summary refs log tree commit diff
path: root/pkgs/development/python-modules/jsonfield/default.nix
blob: 6b7faf9a312d738b395c9c98deef8184b52038fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, fetchPypi, buildPythonPackage, django, pytestCheckHook, pytest-django }:

buildPythonPackage rec {
  pname = "jsonfield";
  version = "3.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0yl828cd0m8jsyr4di6hcjdqmi31ijh5vk57mbpfl7p2gmcq8kky";
  };

  checkInputs = [ pytestCheckHook pytest-django ];

  preCheck = "export DJANGO_SETTINGS_MODULE=tests.settings";

  propagatedBuildInputs = [ django ];

  meta = with lib; {
    description = "Reusable model field that allows you to store validated JSON, automatically handling serialization to and from the database";
    homepage = "https://github.com/rpkilby/jsonfield/";
    license = licenses.mit;
    maintainers = with maintainers; [ mrmebelman ];
  };
}