summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyperclip/default.nix
blob: ae48eb629942dddbf307d898ba35ab4c42ea8185 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildPythonPackage, fetchPypi }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "03ce3e66e2a26a085f0e043236dedd78aaabf53a64dab9a216671f74ee272845";
  };

  doCheck = false;

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