python3Packages.pebble: init at 4.6.0 (#111276)

This commit is contained in:
Orivej Desh 2021-01-30 11:28:36 +00:00 committed by GitHub
parent d6d4228b39
commit 1d8c7f5499
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildPythonPackage, isPy27, fetchPypi, pytestCheckHook }:
buildPythonPackage rec {
pname = "pebble";
version = "4.6.0";
disabled = isPy27;
src = fetchPypi {
pname = "Pebble";
inherit version;
sha256 = "0a595f7mrf89xlck9b2x83bqybc9zd9jxkl0sa5cf19vax18rg8h";
};
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "API to manage threads and processes within an application";
homepage = "https://github.com/noxdafox/pebble";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ orivej ];
};
}

View file

@ -4749,6 +4749,8 @@ in {
pdoc3 = callPackage ../development/python-modules/pdoc3 { };
pebble = callPackage ../development/python-modules/pebble { };
pecan = callPackage ../development/python-modules/pecan { };
peewee = callPackage ../development/python-modules/peewee { };