depot/nix/pkgs/baserow/backend/pynixify/packages/dj-database-url/default.nix

23 lines
640 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.
{ buildPythonPackage, fetchPypi, lib }:
buildPythonPackage rec {
pname = "dj-database-url";
version = "0.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "0qs16g5y3lflxibsl8gwkwap21crhmmv98l60rdq6x1wawgypsja";
};
# TODO FIXME
doCheck = false;
meta = with lib; {
description = "Use Database URLs in your Django Application.";
homepage = "https://github.com/kennethreitz/dj-database-url";
};
}