Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 22 lines 504 B view raw
1{ lib, buildPythonPackage, fetchPypi, nose }: 2 3buildPythonPackage rec { 4 pname = "emoji"; 5 version = "0.6.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "e42da4f8d648f8ef10691bc246f682a1ec6b18373abfd9be10ec0b398823bd11"; 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}