23 lines
591 B
Nix
23 lines
591 B
Nix
# WARNING: This file was automatically generated. You should avoid editing it.
|
|
# If you run pynixify again, the file will be either overwritten or
|
|
# deleted, and you will lose the changes you made to it.
|
|
|
|
{ asgiref, buildPythonPackage, fetchPypi, lib, pytz, sqlparse }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django";
|
|
version = "3.2.6";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "Django";
|
|
sha256 = "08p0gf1n548fjba76wspcj1jb3li6lr7xi87w2xq7hylr528azzj";
|
|
};
|
|
|
|
propagatedBuildInputs = [ asgiref pytz sqlparse ];
|
|
|
|
# TODO FIXME
|
|
doCheck = false;
|
|
|
|
meta = with lib; { };
|
|
}
|