2018-03-02 02:05:55 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub, python, django, dj-database-url }:
|
2017-06-27 22:12:29 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "django-polymorphic";
|
2018-10-24 14:43:33 +01:00
|
|
|
version = "2.0.3";
|
2017-06-27 22:12:29 +01:00
|
|
|
|
2018-03-02 02:05:55 +00:00
|
|
|
# PyPI tarball is missing some test files
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2018-10-24 14:43:33 +01:00
|
|
|
sha256 = "08qk3rbk0xlphwalkigbhqpmfaqjk1sxmlfh8zy8s8dw7fw1myk4";
|
2017-06-27 22:12:29 +01:00
|
|
|
};
|
|
|
|
|
2018-03-02 02:05:55 +00:00
|
|
|
checkInputs = [ dj-database-url ];
|
2017-06-27 22:12:29 +01:00
|
|
|
propagatedBuildInputs = [ django ];
|
|
|
|
|
2018-03-02 02:05:55 +00:00
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} runtests.py
|
|
|
|
'';
|
|
|
|
|
2017-06-27 22:12:29 +01:00
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/django-polymorphic/django-polymorphic;
|
2017-06-27 22:12:29 +01:00
|
|
|
description = "Improved Django model inheritance with automatic downcasting";
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|