Unverified Commit 78f68ddf authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python312Packages.tivars: init at 0.9.2 (#371840)

parents c85faf3f b87aec31
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
}:

buildPythonPackage rec {
  pname = "tivars";
  version = "0.9.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "TI-Toolkit";
    repo = "tivars_lib_py";
    tag = "v${version}";
    hash = "sha256-4c5wRv78Rql9k98WNT58As/Ir1YJpTeoBdkft9TIn7o=";
    fetchSubmodules = true;
  };

  build-system = [
    setuptools
  ];

  pythonImportsCheck = [ "tivars" ];

  # no upstream tests exist
  doCheck = false;

  meta = {
    description = "Python library for interacting with TI-(e)z80 (82/83/84 series) calculator files";
    license = lib.licenses.mit;
    homepage = "https://ti-toolkit.github.io/tivars_lib_py/";
    changelog = "https://github.com/TI-Toolkit/tivars_lib_py/releases/tag/v${version}/CHANGELOG.md";
    maintainers = with lib.maintainers; [ ethancedwards8 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -16304,6 +16304,8 @@ self: super: with self; {
  titlecase = callPackage ../development/python-modules/titlecase { };
  tivars = callPackage ../development/python-modules/tivars { };
  tld = callPackage ../development/python-modules/tld { };
  tlds = callPackage ../development/python-modules/tlds { };