depot/nix/pkgs/baserow/backend/pynixify/packages/django-storages/default.nix

23 lines
553 B
Nix
Raw Normal View History

2021-12-21 00:18:16 +00:00
# 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, django, fetchPypi, lib }:
buildPythonPackage rec {
2022-11-02 02:02:11 +00:00
pname = "django-storages";
version = "1.12.3";
2021-12-21 00:18:16 +00:00
src = fetchPypi {
inherit pname version;
2022-11-02 02:02:11 +00:00
sha256 = "1rx5s9shap2qppanx59k10kif0fmxi8sf6c9aiz4yk7hy2rfsxd4";
2021-12-21 00:18:16 +00:00
};
propagatedBuildInputs = [ django ];
# TODO FIXME
doCheck = false;
2022-11-02 02:02:11 +00:00
meta = with lib; { };
2021-12-21 00:18:16 +00:00
}