Merge pull request #298076 from fabaff/whirlpool-sixth-sense-bump

python311Packages.whirlpool-sixth-sense: 0.18.5 -> 0.18.6
This commit is contained in:
Fabian Affolter 2024-04-06 21:15:27 +02:00 committed by GitHub
commit 23ea7fa991
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 18 additions and 17 deletions

View File

@ -1,37 +1,38 @@
{ lib
, aioconsole
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pytest-asyncio
, pytest-mock
, pytestCheckHook
, pythonOlder
, setuptools
, websockets
{
lib,
aioconsole,
aiohttp,
async-timeout,
buildPythonPackage,
fetchFromGitHub,
pytest-asyncio,
pytest-mock,
pytestCheckHook,
pythonOlder,
setuptools,
websockets,
}:
buildPythonPackage rec {
pname = "whirlpool-sixth-sense";
version = "0.18.7";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "abmantis";
repo = pname;
repo = "whirlpool-sixth-sense";
rev = "refs/tags/${version}";
hash = "sha256-M4qOdxR97VhquB85IgimYKZqix2WoRIZcLSIlVK1xDY=";
};
nativeBuildInputs = [
setuptools
];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
aioconsole
aiohttp
async-timeout
websockets
];