summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyperclip/default.nix
blob: 127301752d657264de7d11679f46ac4eb5c0e0c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, buildPythonPackage
, fetchPypi
, stdenv
, python
}:

buildPythonPackage rec {
  version = "1.8.2";
  pname = "pyperclip";

  src = fetchPypi {
    inherit pname version;
    sha256 = "105254a8b04934f0bc84e9c24eb360a591aaf6535c9def5f29d92af107a9bf57";
  };

  # No such file or directory: 'pbcopy'
  doCheck = !stdenv.isDarwin;

  checkPhase = ''
    ${python.interpreter} tests/test_pyperclip.py
  '';

  pythonImportsCheck = [ "pyperclip" ];

  meta = with lib; {
    homepage = "https://github.com/asweigart/pyperclip";
    license = licenses.bsd3;
    description = "Cross-platform clipboard module";
    maintainers = with maintainers; [ dotlambda ];
  };
}