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 " ;
2019-11-29 00:15:09 +00:00
version = " 1 . 8 " ;
2019-09-23 11:20:13 +01:00
src = fetchPypi {
inherit pname version ;
2019-11-29 00:15:09 +00:00
sha256 = " 1 v 7 m f 4 8 g b 2 q m m k s 3 i f n h k h 0 v f d 7 h p v x 5 v 8 1 y p c 9 c q y 3 5 n 3 i r 0 q 4 a " ;
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 ] ;
} ;
}