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