Merge pull request #194672 from r-ryantm/auto-update/python310Packages.pebble

python310Packages.pebble: 5.0.0 -> 5.0.1
This commit is contained in:
Fabian Affolter 2022-10-06 09:36:53 +02:00 committed by GitHub
commit a4ad992f93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,22 +1,34 @@
{ lib, stdenv, buildPythonPackage, isPy27, fetchPypi, pytestCheckHook }:
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pebble";
version = "5.0.0";
disabled = isPy27;
version = "5.0.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "Pebble";
inherit version;
sha256 = "sha256-rdKgfXHmZphfG9AkAkeH3XkPcfGi27n1+sA3y7NY4M4=";
hash = "sha256-7kHDO+PUEihVcfLMfPkU1MKoGrPTiMaLPHRrerOwuGU=";
};
doCheck = !stdenv.isDarwin;
checkInputs = [
pytestCheckHook
];
doCheck = !stdenv.isDarwin;
pythonImportsCheck = [
"pebble"
];
meta = with lib; {
description = "API to manage threads and processes within an application";
homepage = "https://github.com/noxdafox/pebble";