summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/tivars/default.nix
blob: 50d5bcc88ce871fcce5f96bdd37c6312dd29c49f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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 ];
  };
}