summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pysml/default.nix
blob: 1085eb81404667b32f6eb690229118e62dfc75a4 (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
38
39
40
41
42
43
44
45
46
{
  lib,
  aiohttp,
  bitstring,
  buildPythonPackage,
  fetchFromGitHub,
  poetry-core,
  pyserial-asyncio-fast,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "pysml";
  version = "0.1.5";
  pyproject = true;

  disabled = pythonOlder "3.11";

  src = fetchFromGitHub {
    owner = "mtdcr";
    repo = "pysml";
    tag = version;
    hash = "sha256-cJOf+O/Q+CfX26XQixHEZ/+N7+YsoPadxk/0Zeob2f8=";
  };

  build-system = [ poetry-core ];

  dependencies = [
    aiohttp
    bitstring
    pyserial-asyncio-fast
  ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [ "sml" ];

  meta = {
    description = "Python library for EDL21 smart meters using Smart Message Language (SML)";
    homepage = "https://github.com/mtdcr/pysml";
    changelog = "https://github.com/mtdcr/pysml/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}