meshcore-cli 1.1.40__tar.gz → 1.2.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshcore-cli
3
- Version: 1.1.40
3
+ Version: 1.2.5
4
4
  Summary: Command line interface to meshcore companion radios
5
5
  Project-URL: Homepage, https://github.com/fdlamotte/meshcore-cli
6
6
  Project-URL: Issues, https://github.com/fdlamotte/meshcore-cli/issues
@@ -12,6 +12,7 @@ Classifier: Programming Language :: Python :: 3
12
12
  Requires-Python: >=3.10
13
13
  Requires-Dist: meshcore>=2.1.19
14
14
  Requires-Dist: prompt-toolkit>=3.0.50
15
+ Requires-Dist: pycryptodome
15
16
  Requires-Dist: requests>=2.28.0
16
17
  Description-Content-Type: text/markdown
17
18
 
@@ -4,11 +4,9 @@
4
4
  nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
5
5
  };
6
6
 
7
- outputs =
8
- inputs:
7
+ outputs = inputs:
9
8
  inputs.flake-utils.lib.eachDefaultSystem (
10
- system:
11
- let
9
+ system: let
12
10
  pkgs = inputs.nixpkgs.legacyPackages.${system};
13
11
 
14
12
  lib = pkgs.lib;
@@ -17,15 +15,15 @@
17
15
 
18
16
  meshcore = python3Packages.buildPythonPackage rec {
19
17
  pname = "meshcore";
20
- version = "2.1.9";
18
+ version = "2.1.19";
21
19
  pyproject = true;
22
20
 
23
21
  src = python3Packages.fetchPypi {
24
22
  inherit pname version;
25
- sha256 = "sha256-FhTOuVHhpYvmITgxfhXys8AJhRfYnMwCJ3fWJhMf53w=";
23
+ sha256 = "sha256-R11puo30ozFVqsIZcbNtg/NFukm8ahFzkMVqX4XEIe0=";
26
24
  };
27
25
 
28
- build-system = [ python3Packages.hatchling ];
26
+ build-system = [python3Packages.hatchling];
29
27
 
30
28
  dependencies = [
31
29
  python3Packages.bleak
@@ -33,13 +31,12 @@
33
31
  python3Packages.pyserial-asyncio
34
32
  ];
35
33
 
36
- pythonImportsCheck = [ "meshcore" ];
34
+ pythonImportsCheck = ["meshcore"];
37
35
  };
38
36
 
39
37
  pyproject = lib.importTOML ./pyproject.toml;
40
38
  version = pyproject.project.version;
41
- in
42
- {
39
+ in {
43
40
  packages.meshcore-cli = python3Packages.buildPythonPackage {
44
41
  pname = "meshcore-cli";
45
42
  inherit version;
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "meshcore-cli"
7
- version = "1.1.40"
7
+ version = "1.2.5"
8
8
  authors = [
9
9
  { name="Florent de Lamotte", email="florent@frizoncorrea.fr" },
10
10
  ]
@@ -17,7 +17,7 @@ classifiers = [
17
17
  ]
18
18
  license = "MIT"
19
19
  license-files = ["LICEN[CS]E*"]
20
- dependencies = [ "meshcore >= 2.1.19", "prompt_toolkit >= 3.0.50", "requests >= 2.28.0" ]
20
+ dependencies = [ "meshcore >= 2.1.19", "prompt_toolkit >= 3.0.50", "requests >= 2.28.0", "pycryptodome" ]
21
21
 
22
22
  [project.urls]
23
23
  Homepage = "https://github.com/fdlamotte/meshcore-cli"