2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
django,
|
|
|
|
pythonOlder,
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2022-01-07 04:07:37 +00:00
|
|
|
pname = "filebrowser-safe";
|
|
|
|
version = "1.1.1";
|
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.6";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2022-01-07 04:07:37 +00:00
|
|
|
pname = "filebrowser_safe";
|
|
|
|
inherit version;
|
|
|
|
sha256 = "499c5dbd9e112dfc436cae7713b2fb664a59015021f6c9d131e3b7980aeb5c94";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
buildInputs = [ django ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# There is no test embedded
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Snapshot of django-filebrowser for the Mezzanine CMS";
|
2020-04-24 23:36:52 +00:00
|
|
|
longDescription = ''
|
2024-01-13 08:15:51 +00:00
|
|
|
filebrowser-safe was created to provide a snapshot of the
|
2020-04-24 23:36:52 +00:00
|
|
|
FileBrowser asset manager for Django, to be referenced as a
|
|
|
|
dependency for the Mezzanine CMS for Django.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/stephenmcd/filebrowser-safe";
|
|
|
|
downloadPage = "https://pypi.python.org/pypi/filebrowser_safe/";
|
2022-01-07 04:07:37 +00:00
|
|
|
license = licenses.bsd3;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ prikhi ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|