1{ lib, buildPythonPackage, isPy27, fetchPypi, pytestCheckHook }:
2
3buildPythonPackage rec {
4 pname = "pebble";
5 version = "4.6.0";
6 disabled = isPy27;
7
8 src = fetchPypi {
9 pname = "Pebble";
10 inherit version;
11 sha256 = "0a595f7mrf89xlck9b2x83bqybc9zd9jxkl0sa5cf19vax18rg8h";
12 };
13
14 checkInputs = [
15 pytestCheckHook
16 ];
17
18 meta = with lib; {
19 description = "API to manage threads and processes within an application";
20 homepage = "https://github.com/noxdafox/pebble";
21 license = licenses.lgpl3Plus;
22 maintainers = with maintainers; [ orivej ];
23 };
24}