python312Packages.tivars: init at 0.9.2
Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
@@ -16181,6 +16181,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 { };
|
||||
|
||||
Reference in New Issue
Block a user