Unverified Commit f6701b45 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #269851 from r-ryantm/auto-update/python311Packages.tcxreader

python311Packages.tcxreader: 0.4.4 -> 0.4.5
parents b608fc23 31fa2e5f
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
  pname = "tcxreader";
  version = "0.4.4";
  format = "setuptools";
  version = "0.4.5";
  pyproject = true;

  disabled = pythonOlder "3.7";
  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "alenrajsp";
    repo = "tcxreader";
    rev = "v${version}";
    hash = "sha256-UJ6F+GcdF0b2gALQWepLyCnWm+6RKBRnBt1eJNoRRzo=";
    rev = "refs/tags/v${version}";
    hash = "sha256-CiOLcev9fo2BPgnPZZ2borU25f/gKISqRAapAHgLN3w=";
  };

  nativeBuildInputs = [
    poetry-core
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];