summary refs log tree commit diff
path: root/pkgs/applications/office/paperless/python-modules/django-crispy-forms.nix
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2021-06-03 15:59:17 +0200
committerFlakebi <flakebi@t-online.de>2021-08-14 10:10:44 +0200
commit6e1421013a299668fd610dd70b3ebd9105891b90 (patch)
treecfefc8116b70086d8c80affad70aebe11d3440cd /pkgs/applications/office/paperless/python-modules/django-crispy-forms.nix
parent95f2dc650d8c6c9f65efd85d915246ab94c4de6e (diff)
downloadnixpkgs-6e1421013a299668fd610dd70b3ebd9105891b90.tar
nixpkgs-6e1421013a299668fd610dd70b3ebd9105891b90.tar.gz
nixpkgs-6e1421013a299668fd610dd70b3ebd9105891b90.tar.bz2
nixpkgs-6e1421013a299668fd610dd70b3ebd9105891b90.tar.lz
nixpkgs-6e1421013a299668fd610dd70b3ebd9105891b90.tar.xz
nixpkgs-6e1421013a299668fd610dd70b3ebd9105891b90.tar.zst
nixpkgs-6e1421013a299668fd610dd70b3ebd9105891b90.zip
paperless: remove package & module as it has been superseded by paperless-ng
The paperless project has moved on to paperless-ng and the original
paperless package in Nixpkgs has stopped working recently (due to
version incompatibility with the providede Django package).

Instead of investing more time into the old module we should migrate all
users to the new module instead.
Diffstat (limited to 'pkgs/applications/office/paperless/python-modules/django-crispy-forms.nix')
-rw-r--r--pkgs/applications/office/paperless/python-modules/django-crispy-forms.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/applications/office/paperless/python-modules/django-crispy-forms.nix b/pkgs/applications/office/paperless/python-modules/django-crispy-forms.nix
deleted file mode 100644
index f8b91a94ccc..00000000000
--- a/pkgs/applications/office/paperless/python-modules/django-crispy-forms.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pytestCheckHook
-, pytest-django
-, django
-}:
-
-buildPythonPackage rec {
-  pname = "django-crispy-forms";
-  version = "1.10.0";
-
-  src = fetchFromGitHub {
-    owner = "django-crispy-forms";
-    repo = "django-crispy-forms";
-    rev = version;
-    sha256 = "0y6kskfxgckb9npcgwx4zrs5n9px159zh9zhinhxi3i7wlriqpf5";
-  };
-
-  # For reasons unknown, the source dir must contain a dash
-  # for the tests to run successfully
-  postUnpack = ''
-    mv $sourceRoot source-
-    export sourceRoot=source-
-  '';
-
-  checkInputs = [ django pytest-django pytestCheckHook ];
-
-  preCheck = ''
-    export DJANGO_SETTINGS_MODULE=crispy_forms.tests.test_settings
-  '';
-
-  meta = with lib; {
-    description = "The best way to have DRY Django forms";
-    homepage = "https://github.com/maraujop/django-crispy-forms";
-    license = licenses.mit;
-    maintainers = with maintainers; [ earvstedt ];
-  };
-}