Merge pull request #148109 from fabaff/bump-meshtastic

python3Packages.meshtastic: 1.2.40 -> 1.2.43

authored by Fabian Affolter and committed by GitHub 6e92c47d 9559834d

+8 -11
+8 -11
pkgs/development/python-modules/meshtastic/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "meshtastic"; 18 - version = "1.2.40"; 18 + version = "1.2.43"; 19 + format = "setuptools"; 20 + 19 21 disabled = pythonOlder "3.6"; 20 22 21 23 src = fetchPypi { 22 24 inherit pname version; 23 - sha256 = "be8464037d0c8085350065b38e7a7b028db15f2524764dec0e3548ea5b53500f"; 25 + sha256 = "sha256-nGbULY/QJUv3sk8vYXvh/fhkab/vB3lGGhXRTjt8anI="; 24 26 }; 25 27 26 28 propagatedBuildInputs = [ ··· 35 37 timeago 36 38 ]; 37 39 38 - postPatch = '' 39 - # https://github.com/meshtastic/Meshtastic-python/pull/87 40 - substituteInPlace setup.py \ 41 - --replace 'with open("README.md", "r") as fh:' "" \ 42 - --replace "long_description = fh.read()" "" \ 43 - --replace "long_description=long_description," 'long_description="",' 44 - ''; 45 - 46 40 # Project only provides PyPI releases which don't contain the tests 47 41 # https://github.com/meshtastic/Meshtastic-python/issues/86 48 42 doCheck = false; 49 - pythonImportsCheck = [ "meshtastic" ]; 43 + 44 + pythonImportsCheck = [ 45 + "meshtastic" 46 + ]; 50 47 51 48 meta = with lib; { 52 49 description = "Python API for talking to Meshtastic devices";