1 { lib, buildPythonPackage, fetchFromGitHub, python, django, dj-database-url }:
3 buildPythonPackage rec {
4 pname = "django-polymorphic";
7 src = fetchFromGitHub {
8 owner = "django-polymorphic";
9 repo = "django-polymorphic";
11 sha256 = "sha256-JJY+FoMPSnWuSsNIas2JedGJpdm6RfPE3E1VIjGuXIc=";
14 propagatedBuildInputs = [ django ];
16 checkInputs = [ dj-database-url ];
19 ${python.interpreter} runtests.py
22 pythonImportsCheck = [ "polymorphic" ];
25 homepage = "https://github.com/django-polymorphic/django-polymorphic";
26 description = "Improved Django model inheritance with automatic downcasting";
27 license = licenses.bsd3;
28 maintainers = with maintainers; [ SuperSandro2000 ];