]> git.immae.eu Git - perso/Immae/Config/Nix.git/blobdiff - pkgs/terminal-velocity/default.nix
Squash changes containing private information
[perso/Immae/Config/Nix.git] / pkgs / terminal-velocity / default.nix
diff --git a/pkgs/terminal-velocity/default.nix b/pkgs/terminal-velocity/default.nix
deleted file mode 100644 (file)
index 1a015c0..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-{ python36Packages }:
-with python36Packages;
-buildPythonApplication rec {
-  pname = "terminal-velocity-git";
-  version = "0.2.0";
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "13yrkcmvh5h5fwnai61sbmqkrjyisz08n62pq0ada2lyyqf7g6b9";
-  };
-
-  patches = [
-    ./sort_found_notes.patch
-    ./python3_support.patch
-    # FIXME: update this patch when version changes
-    ./fix_build.patch
-  ];
-
-  preCheck = ''
-    # Needed for urwid test
-    export LC_ALL=en_US.UTF-8
-    '';
-  propagatedBuildInputs = [
-    chardet
-    urwid
-    (sh.overridePythonAttrs { doCheck = false; })
-    pyyaml
-  ];
-  buildInputs = [
-    m2r
-    (restructuredtext_lint.overridePythonAttrs { doCheck = false; })
-    pygments
-  ];
-
-  postInstall = ''
-    rm $out/bin/terminal_velocity
-    '';
-}