aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/wordcloud/default.nix
blob: d005527b4c35977a0a9f47b94b9b62d50d5504b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv, buildPythonPackage, fetchFromGitHub
, matplotlib
, mock
, numpy
, pillow
, pytest
, pytestcov
}:

buildPythonPackage rec {
  pname = "word_cloud";
  version = "1.6.0";

  # tests are not included in pypi tarball
  src = fetchFromGitHub {
    owner = "amueller";
    repo = pname;
    rev = version;
    sha256 = "1ncjr90m3w3b4zi23kw6ai11gxahdyah96x8jb2yn2x4573022x2";
  };

  propagatedBuildInputs = [ matplotlib numpy pillow ];

  # Tests require extra dependencies
  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";
    license = licenses.mit;
    maintainers = with maintainers; [ jm2dev ];
  };
}