summary refs log tree commit diff
path: root/pkgs/applications/science/misc/sasview/myHtml5.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/science/misc/sasview/myHtml5.nix')
-rw-r--r--pkgs/applications/science/misc/sasview/myHtml5.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/pkgs/applications/science/misc/sasview/myHtml5.nix b/pkgs/applications/science/misc/sasview/myHtml5.nix
deleted file mode 100644
index 17e6a6d52e2f..000000000000
--- a/pkgs/applications/science/misc/sasview/myHtml5.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{python}:
-
-python.pkgs.buildPythonPackage (rec{
-  buildInputs = with python.pkgs; [ flake8 pytest pytest-expect mock ];
-  propagatedBuildInputs = with python.pkgs; [
-    six webencodings
-  ];
-
-  checkPhase = ''
-    py.test
-  '';
-  pname = "html5lib";
-  name = "html5lib-${version}";
-  version = "1.0b10";
-  src = python.pkgs.fetchPypi {
-    pname = "html5lib";
-    inherit version;
-    sha256 = "1yd068a5c00wd0ajq0hqimv7fd82lhrw0w3s01vbhy9bbd6xapqd";
-  };
-})