nixpkgs/pkgs/development/python-modules/emoji/default.nix

23 lines
502 B
Nix
Raw Normal View History

2017-05-25 18:07:59 +03:00
{ lib, buildPythonPackage, fetchPypi, nose }:
buildPythonPackage rec {
pname = "emoji";
2019-04-16 20:15:35 +03:00
version = "0.5.2";
2017-05-25 18:07:59 +03:00
src = fetchPypi {
inherit pname version;
2019-04-16 20:15:35 +03:00
sha256 = "9ae01495fc3fcc04e9136ca1af8cae58726ec5dfaaa92f61f0732cbae9a12fa9";
2017-05-25 18:07:59 +03:00
};
checkInputs = [ nose ];
checkPhase = ''nosetests'';
meta = with lib; {
description = "Emoji for Python";
homepage = https://pypi.python.org/pypi/emoji/;
license = licenses.bsd3;
maintainers = with maintainers; [ joachifm ];
};
}