about summary refs log tree commit diff
path: root/pkgs/development/python-modules/gsm0338/default.nix
blob: e6153f48a58fc09612bdbb7f7eb4e88fd9c382ba (plain) (blame)
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
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  poetry-core,
  pytestCheckHook,
}:

buildPythonPackage {
  pname = "gsm0338";
  version = "1.1.0";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "dsch";
    repo = "gsm0338";
    rev = "1c036bd3b656b5075fdc221cbc578c4a47b42b1f";
    hash = "sha256-EkUVd4d4Te8brHerygDc6KQSpiX11NrHYkcZSDRi05w=";
  };

  nativeBuildInputs = [ poetry-core ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "gsm0338" ];

  meta = with lib; {
    description = "Python codec for GSM 03.38";
    homepage = "https://github.com/dsch/gsm0338";
    license = licenses.mit;
    maintainers = with maintainers; [ flokli ];
  };
}