ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pebble / default.nix
blob996d85b67d9fcd149c40201b2eca84e8b7da8ab8
1 { lib
2 , stdenv
3 , buildPythonPackage
4 , fetchPypi
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "pebble";
11   version = "5.0.2";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     pname = "Pebble";
18     inherit version;
19     hash = "sha256-nFjAPq+SDDEodETG/vOdxTuurJ3iIerRBPXJtI6L1Yc=";
20   };
22   checkInputs = [
23     pytestCheckHook
24   ];
26   doCheck = !stdenv.isDarwin;
28   pythonImportsCheck = [
29     "pebble"
30   ];
32   meta = with lib; {
33     description = "API to manage threads and processes within an application";
34     homepage = "https://github.com/noxdafox/pebble";
35     license = licenses.lgpl3Plus;
36     maintainers = with maintainers; [ orivej ];
37   };