Unverified Commit 23ea7fa9 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python311Packages.whirlpool-sixth-sense: 0.18.5 -> 0.18.6
parents 65bb13f0 17f8a375
Loading
Loading
Loading
Loading
+18 −17
Original line number Diff line number Diff line
{ 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
  ];