Unverified Commit 41002612 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

python3Packages.pysmlight: 0.2.9 -> 0.2.11 (#464663)

parents 4ac9ca2a b98fe824
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -5,26 +5,30 @@
  awesomeversion,
  buildPythonPackage,
  fetchFromGitHub,
  hatch-vcs,
  hatchling,
  lib,
  mashumaro,
  poetry-core,
  pytest-asyncio,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "pysmlight";
  version = "0.2.9";
  version = "0.2.11";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "smlight-tech";
    repo = "pysmlight";
    tag = "v${version}";
    hash = "sha256-KNEGRmMq88AMGrBB0hfNa5bJpLx5gLZLH7H7zLkiQ2c=";
    hash = "sha256-+ApqlqrNGQJ52VJPaaWCddsQGMu7W2fLJLKxV69zJKI=";
  };

  build-system = [ poetry-core ];
  build-system = [
    hatch-vcs
    hatchling
  ];

  dependencies = [
    aiohttp