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

python3Packages.elkm1-lib: 2.2.12 -> 2.2.13 (#465367)

parents 40bb5573 6efd4862
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
{
  lib,
  async-timeout,
  buildPythonPackage,
  fetchFromGitHub,
  hatchling,
  pyserial-asyncio-fast,
  pytest-asyncio,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "elkm1-lib";
  version = "2.2.12";
  version = "2.2.13";
  pyproject = true;

  disabled = pythonOlder "3.11";

  src = fetchFromGitHub {
    owner = "gwww";
    repo = "elkm1";
    tag = version;
    hash = "sha256-66Yen8QZAIKzMePFzxOgeprTIMKj3fanicMCBeqhyO4=";
    hash = "sha256-Z8OfaRggVkGzX7d/O8a7L110ophj3sKD2x5JskusUe8=";
  };

  build-system = [ hatchling ];

  dependencies = [
    async-timeout
    pyserial-asyncio-fast
  ];