nixpkgs/pkgs/development/python-modules/wordcloud/default.nix
Jörg Thalheim 5d84589c3d
python3.pkgs.wordcloud: 1.6.0 -> 1.8.1
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Jonathan Ringer <jonringer@users.noreply.github.com>
2020-12-30 07:19:10 +01:00

49 lines
1.1 KiB
Nix

{ stdenv, buildPythonPackage, fetchFromGitHub
, matplotlib
, mock
, numpy
, pillow
, cython
, pytestcov
, pytest
, fetchpatch
}:
buildPythonPackage rec {
pname = "word_cloud";
version = "1.8.1";
# tests are not included in pypi tarball
src = fetchFromGitHub {
owner = "amueller";
repo = pname;
rev = version;
sha256 = "sha256-4EFQfv+Jn9EngUAyDoJP0yv9zr9Tnbrdwq1YzDacB9Q=";
};
nativeBuildInputs = [ cython ];
propagatedBuildInputs = [ matplotlib numpy pillow ];
# Tests require extra dependencies
checkInputs = [ mock pytest pytestcov ];
checkPhase = ''
PATH=$out/bin:$PATH pytest test
'';
patches = [
(fetchpatch {
# https://github.com/amueller/word_cloud/pull/616
url = "https://github.com/amueller/word_cloud/commit/858a8ac4b5b08494c1d25d9e0b35dd995151a1e5.patch";
sha256 = "sha256-+aDTMPtOibVwjPrRLxel0y4JFD5ERB2bmJi4zRf/asg=";
})
];
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 ];
};
}