blob: 631bebd566bfe02f9787f7dd153a227de01dbe2f (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
{
lib,
stdenv,
fetchFromGitHub,
buildPythonPackage,
pytest,
pythonOlder,
xclip,
xvfb-run,
}:
buildPythonPackage rec {
pname = "pyclip";
version = "0.7.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "spyoungtech";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-0nOkNgT8XCwtXI9JZntkhoMspKQU602rTKBFajVKBoM=";
};
postPatch = ''
substituteInPlace setup.py \
--replace docs/README.md README.md
'';
nativeCheckInputs =
[ pytest ]
++ lib.optionals stdenv.hostPlatform.isLinux [
xclip
xvfb-run
];
checkPhase = ''
runHook preCheck
${lib.optionalString stdenv.hostPlatform.isLinux "xvfb-run -s '-screen 0 800x600x24'"} pytest tests
runHook postCheck
'';
meta = {
broken = stdenv.hostPlatform.isDarwin;
description = "Cross-platform clipboard utilities supporting both binary and text data";
mainProgram = "pyclip";
homepage = "https://github.com/spyoungtech/pyclip";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ mcaju ];
};
}
|