Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 22 lines 502 B view raw
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}