summary refs log tree commit diff
path: root/pkgs/tools/networking/pirate-get/default.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-06-21 17:43:56 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-06-22 13:09:47 +0200
commit5523162e859a90ece625383fb00cd63cb120a72a (patch)
treece486e11c2085986d6fbae86c70fd1dde38bb661 /pkgs/tools/networking/pirate-get/default.nix
parenta2799a4e885944c5428b9c7957aeccae14f402df (diff)
downloadnixlib-5523162e859a90ece625383fb00cd63cb120a72a.tar
nixlib-5523162e859a90ece625383fb00cd63cb120a72a.tar.gz
nixlib-5523162e859a90ece625383fb00cd63cb120a72a.tar.bz2
nixlib-5523162e859a90ece625383fb00cd63cb120a72a.tar.lz
nixlib-5523162e859a90ece625383fb00cd63cb120a72a.tar.xz
nixlib-5523162e859a90ece625383fb00cd63cb120a72a.tar.zst
nixlib-5523162e859a90ece625383fb00cd63cb120a72a.zip
pirate-get: add missing dependency
Diffstat (limited to 'pkgs/tools/networking/pirate-get/default.nix')
-rw-r--r--pkgs/tools/networking/pirate-get/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/tools/networking/pirate-get/default.nix b/pkgs/tools/networking/pirate-get/default.nix
index 6390776e1be8..5258d53a18ae 100644
--- a/pkgs/tools/networking/pirate-get/default.nix
+++ b/pkgs/tools/networking/pirate-get/default.nix
@@ -3,7 +3,6 @@
 with python3Packages;
 
 buildPythonApplication rec {
-  name = "${pname}-${version}";
   pname = "pirate-get";
   version = "0.3.1";
 
@@ -14,7 +13,7 @@ buildPythonApplication rec {
     sha256 = "9d7cc4b15dd8c6a82f9e03a666372e38613ccafdc846ad4c1226ba936beea68d";
   };
 
-  propagatedBuildInputs = [ colorama veryprettytable beautifulsoup4 ];
+  propagatedBuildInputs = [ colorama veryprettytable beautifulsoup4 pyperclip ];
 
   meta = with stdenv.lib; {
     description = "A command line interface for The Pirate Bay";