1 { lib, buildPythonPackage, fetchFromGitHub, django, pytest, pytest-django, python }:
3 buildPythonPackage rec {
4 pname = "django-picklefield";
8 # The PyPi source doesn't contain tests
9 src = fetchFromGitHub {
13 sha256 = "0ni7bc86k0ra4pc8zv451pzlpkhs1nyil1sq9jdb4m2mib87b5fk";
16 propagatedBuildInputs = [ django ];
18 # Tests are failing with Django 3.2
19 # https://github.com/gintas/django-picklefield/issues/58
24 ${python.interpreter} -m django test --settings=tests.settings
29 description = "A pickled object field for Django";
30 homepage = "https://github.com/gintas/django-picklefield";
31 license = licenses.mit;
32 maintainers = with maintainers; [ ];