summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2020-07-07 14:32:23 +0200
committerJon <jonringer@users.noreply.github.com>2020-07-07 13:01:38 -0700
commite2786e8e88d6529b2dd82ad047789581c87b3de4 (patch)
tree8d30746a9de9fad53161945af17cf3c9f6e7bf50 /pkgs
parent2f938b3814dc90512c9f59daabe7b744adcd43d3 (diff)
downloadnixpkgs-e2786e8e88d6529b2dd82ad047789581c87b3de4.tar
nixpkgs-e2786e8e88d6529b2dd82ad047789581c87b3de4.tar.gz
nixpkgs-e2786e8e88d6529b2dd82ad047789581c87b3de4.tar.bz2
nixpkgs-e2786e8e88d6529b2dd82ad047789581c87b3de4.tar.lz
nixpkgs-e2786e8e88d6529b2dd82ad047789581c87b3de4.tar.xz
nixpkgs-e2786e8e88d6529b2dd82ad047789581c87b3de4.tar.zst
nixpkgs-e2786e8e88d6529b2dd82ad047789581c87b3de4.zip
python.pkgs.wordcloud: simplify checkInputs
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/wordcloud/default.nix12
1 files changed, 3 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/wordcloud/default.nix b/pkgs/development/python-modules/wordcloud/default.nix
index 759e48eb997..d005527b4c3 100644
--- a/pkgs/development/python-modules/wordcloud/default.nix
+++ b/pkgs/development/python-modules/wordcloud/default.nix
@@ -1,18 +1,12 @@
 { stdenv, buildPythonPackage, fetchFromGitHub
-, codecov, coverage
-, flake8
 , matplotlib
 , mock
 , numpy
 , pillow
 , pytest
 , pytestcov
-, pytest-sugar
-, setuptools
-, twine
-, wheel
 }:
-  
+
 buildPythonPackage rec {
   pname = "word_cloud";
   version = "1.6.0";
@@ -28,12 +22,12 @@ buildPythonPackage rec {
   propagatedBuildInputs = [ matplotlib numpy pillow ];
 
   # Tests require extra dependencies
-  checkInputs = [ codecov coverage flake8 mock pytest pytestcov pytest-sugar setuptools twine wheel ];
+  checkInputs = [ mock pytest pytestcov ];
   # skip tests which make assumptions about installation
   checkPhase = ''
     pytest -k 'not cli_as_executable'
   '';
-  
+
   meta = with stdenv.lib; {
     description = "A little word cloud generator in Python";
     homepage = "https://github.com/amueller/word_cloud";