nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.django-sites: init at 0.9

authored by

betaboon and committed by
Frederik Rietdijk
e55f5fe4 f69a072f

+28
+26
pkgs/development/python-modules/django-sites/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, django }: 2 + 3 + buildPythonPackage rec { 4 + pname = "django-sites"; 5 + name = "${pname}-${version}"; 6 + version = "0.9"; 7 + 8 + meta = { 9 + description = '' 10 + Alternative implementation of django "sites" framework 11 + based on settings instead of models. 12 + ''; 13 + homepage = https://github.com/niwinz/django-sites; 14 + license = lib.licenses.bsd3; 15 + }; 16 + 17 + src = fetchPypi { 18 + inherit pname version; 19 + sha256 = "05nrydk4a5a99qrxjrcnacs8nbbq5pfjikdpj4w9yn5yfayp057s"; 20 + }; 21 + 22 + propagatedBuildInputs = [ django ]; 23 + 24 + # django.core.exceptions.ImproperlyConfigured: Requested settings, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings. 25 + doCheck = false; 26 + }
+2
pkgs/top-level/python-packages.nix
··· 8648 8648 8649 8649 django-sampledatahelper = callPackage ../development/python-modules/django-sampledatahelper { }; 8650 8650 8651 + django-sites = callPackage ../development/python-modules/django-sites { }; 8652 + 8651 8653 django_tagging = callPackage ../development/python-modules/django_tagging { }; 8652 8654 8653 8655 django_tagging_0_3 = self.django_tagging.overrideAttrs (attrs: rec {