1{ lib, buildPythonPackage, fetchPypi, nose }:
2
3buildPythonPackage rec {
4 pname = "emoji";
5 version = "0.5.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "001b92b9c8a157e1ca49187745fa450513bc8b31c87328dfd83d674b9d7dfa63";
10 };
11
12 checkInputs = [ nose ];
13
14 checkPhase = ''nosetests'';
15
16 meta = with lib; {
17 description = "Emoji for Python";
18 homepage = https://pypi.python.org/pypi/emoji/;
19 license = licenses.bsd3;
20 maintainers = with maintainers; [ joachifm ];
21 };
22}