Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 439 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 version = "1.8.0"; 5 pname = "pyperclip"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "b75b975160428d84608c26edba2dec146e7799566aea42c1fe1b32e72b6028f2"; 10 }; 11 12 doCheck = false; 13 14 meta = with lib; { 15 homepage = "https://github.com/asweigart/pyperclip"; 16 license = licenses.bsdOriginal; 17 description = "Cross-platform clipboard module"; 18 }; 19}