nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, stdenv, buildPythonPackage, isPy27, fetchPypi, pytestCheckHook }:
2
3buildPythonPackage rec {
4 pname = "pebble";
5 version = "4.6.3";
6 disabled = isPy27;
7
8 src = fetchPypi {
9 pname = "Pebble";
10 inherit version;
11 sha256 = "694e1105db888f3576b8f00662f90b057cf3780e6f8b7f57955a568008d0f497";
12 };
13
14 doCheck = !stdenv.isDarwin;
15
16 checkInputs = [
17 pytestCheckHook
18 ];
19
20 meta = with lib; {
21 description = "API to manage threads and processes within an application";
22 homepage = "https://github.com/noxdafox/pebble";
23 license = licenses.lgpl3Plus;
24 maintainers = with maintainers; [ orivej ];
25 };
26}