X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FNix.git;a=blobdiff_plain;f=pkgs%2Fterminal-velocity%2Fdefault.nix;fp=pkgs%2Fterminal-velocity%2Fdefault.nix;h=0000000000000000000000000000000000000000;hp=1a015c047397129f936ca6b24ad8573f79a74456;hb=1a64deeb894dc95e2645a75771732c6cc53a79ad;hpb=fa25ffd4583cc362075cd5e1b4130f33306103f0 diff --git a/pkgs/terminal-velocity/default.nix b/pkgs/terminal-velocity/default.nix deleted file mode 100644 index 1a015c0..0000000 --- a/pkgs/terminal-velocity/default.nix +++ /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 - ''; -}