Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 19 lines 439 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 version = "1.7.0"; 5 pname = "pyperclip"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "979325468ccf682104d5dcaf753f869868100631301d3e72f47babdea5700d1c"; 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}