summary refs log tree commit diff
path: root/pkgs/applications/science/misc/sasview/xhtml2pdf.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/science/misc/sasview/xhtml2pdf.nix')
-rw-r--r--pkgs/applications/science/misc/sasview/xhtml2pdf.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/pkgs/applications/science/misc/sasview/xhtml2pdf.nix b/pkgs/applications/science/misc/sasview/xhtml2pdf.nix
deleted file mode 100644
index 9f2b8e01a27d..000000000000
--- a/pkgs/applications/science/misc/sasview/xhtml2pdf.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{python, html5}:
-
-python.pkgs.buildPythonPackage rec {
-  name = "${pname}-${version}";
-  pname = "xhtml2pdf";
-  version = "0.2.1";
-
-  buildInputs = [html5];
-  propagatedBuildInputs = with python.pkgs; [httplib2 pillow pypdf2 reportlab html5];
-
-  src = python.pkgs.fetchPypi {
-    inherit pname version;
-    sha256 = "1n9r8zdk9gc2x539fq60bhszmd421ipj8g78zmsn3njvma1az9k1";
-  };
-}