lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.pyperclip: run tests

authored by

Robert Schütz and committed by
Robert Schütz
c1d88dd0 d5db2921

+15 -2
+15 -2
pkgs/development/python-modules/pyperclip/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , stdenv 5 + , python 6 + }: 2 7 3 8 buildPythonPackage rec { 4 9 version = "1.8.2"; ··· 9 14 sha256 = "105254a8b04934f0bc84e9c24eb360a591aaf6535c9def5f29d92af107a9bf57"; 10 15 }; 11 16 12 - doCheck = false; 17 + # No such file or directory: 'pbcopy' 18 + doCheck = !stdenv.isDarwin; 19 + 20 + checkPhase = '' 21 + ${python.interpreter} tests/test_pyperclip.py 22 + ''; 23 + 24 + pythonImportsCheck = [ "pyperclip" ]; 13 25 14 26 meta = with lib; { 15 27 homepage = "https://github.com/asweigart/pyperclip"; 16 28 license = licenses.bsd3; 17 29 description = "Cross-platform clipboard module"; 30 + maintainers = with maintainers; [ dotlambda ]; 18 31 }; 19 32 }