mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
30 lines
773 B
Nix
30 lines
773 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, django
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pymemoize";
|
|
version = "1.0.3";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "PyMemoize";
|
|
sha256 = "0yqr60hm700zph6nv8wb6yp2s0i08mahxvw98bvkmw5ijbsviiq7";
|
|
};
|
|
|
|
checkInputs = [ django ];
|
|
|
|
# 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
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Simple Python cache and memoizing module";
|
|
homepage = "https://github.com/mikeboers/PyMemoize";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ mmai ];
|
|
};
|
|
}
|
|
|