1{ lib, buildPythonPackage, fetchPypi, nose }:
2
3buildPythonPackage rec {
4 pname = "emoji";
5 version = "0.5.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "a9e9c08be9907c0042212c86dfbea0f61f78e9897d4df41a1d6307017763ad3e";
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}