mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
38 lines
869 B
Nix
38 lines
869 B
Nix
{ 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 ];
|
|
};
|
|
}
|