2019-09-23 11:20:13 +01:00
{ stdenv , buildPythonPackage , fetchPypi
, django , persisting-theory , six
} :
buildPythonPackage rec {
pname = " d j a n g o - d y n a m i c - p r e f e r e n c e s " ;
2020-06-06 07:47:04 +01:00
version = " 1 . 9 " ;
2019-09-23 11:20:13 +01:00
src = fetchPypi {
inherit pname version ;
2020-06-06 07:47:04 +01:00
sha256 = " 4 0 7 d b 2 7 b f 5 5 d 3 9 1 c 4 c 8 a 4 9 4 4 e 0 5 2 1 f 3 5 e f f 8 2 c 2 f 2 f d 5 a 2 f c 8 4 3 f b 1 b 4 c c 1 a 3 1 f 4 " ;
2019-09-23 11:20:13 +01:00
} ;
propagatedBuildInputs = [ six django persisting-theory ] ;
# django.core.exceptions.ImproperlyConfigured: Requested setting DYNAMIC_PREFERENCES, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings
doCheck = false ;
meta = with stdenv . lib ; {
2020-04-01 02:11:51 +01:00
homepage = " h t t p s : / / g i t h u b . c o m / E l i o t B e r r i o t / d j a n g o - d y n a m i c - p r e f e r e n c e s " ;
2019-09-23 11:20:13 +01:00
description = " D y n a m i c g l o b a l a n d i n s t a n c e s e t t i n g s f o r y o u r d j a n g o p r o j e c t " ;
license = licenses . bsd3 ;
maintainers = with maintainers ; [ mmai ] ;
} ;
}