Skip to content

Commit 65d640c

Browse files
authored
Merge pull request #13 from tbaumann/main
Nix: Bump meshcore dependency to 2.1.18
2 parents ececb3a + 65f826e commit 65d640c

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

flake.nix

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@
44
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
55
};
66

7-
outputs =
8-
inputs:
7+
outputs = inputs:
98
inputs.flake-utils.lib.eachDefaultSystem (
10-
system:
11-
let
9+
system: let
1210
pkgs = inputs.nixpkgs.legacyPackages.${system};
1311

1412
lib = pkgs.lib;
@@ -17,29 +15,28 @@
1715

1816
meshcore = python3Packages.buildPythonPackage rec {
1917
pname = "meshcore";
20-
version = "2.1.9";
18+
version = "2.1.18";
2119
pyproject = true;
2220

2321
src = python3Packages.fetchPypi {
2422
inherit pname version;
25-
sha256 = "sha256-FhTOuVHhpYvmITgxfhXys8AJhRfYnMwCJ3fWJhMf53w=";
23+
sha256 = "sha256-hLflGBHG1z0b31oLh5KgXQbrYeBgYtY07fjgULw68tA=";
2624
};
2725

28-
build-system = [ python3Packages.hatchling ];
26+
build-system = [python3Packages.hatchling];
2927

3028
dependencies = [
3129
python3Packages.bleak
3230
python3Packages.pycayennelpp
3331
python3Packages.pyserial-asyncio
3432
];
3533

36-
pythonImportsCheck = [ "meshcore" ];
34+
pythonImportsCheck = ["meshcore"];
3735
};
3836

3937
pyproject = lib.importTOML ./pyproject.toml;
4038
version = pyproject.project.version;
41-
in
42-
{
39+
in {
4340
packages.meshcore-cli = python3Packages.buildPythonPackage {
4441
pname = "meshcore-cli";
4542
inherit version;

0 commit comments

Comments
 (0)