biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / cobs / default.nix
blob89f9a40e1a90bfe48ea6138b5f920100c14b9b0c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6 }:
8 buildPythonPackage rec {
9   pname = "cobs";
10   version = "1.2.1";
11   format = "setuptools";
13   disabled = pythonOlder "3.6";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-Kvf4eRzeGufGuTb10MNf4p/rEN4l95wVsK8NZyl4PMA=";
18   };
20   checkPhase = ''
21     runHook preCheck
23     python -m cobs.cobs.test
24     python -m cobs.cobsr.test
26     runHook postCheck
27   '';
29   pythonImportsCheck = [
30     "cobs"
31     "cobs.cobs"
32     "cobs.cobsr"
33   ];
35   meta = with lib; {
36     description = "Python functions for encoding and decoding COBS";
37     longDescription = ''
38       COBS is a method of encoding a packet of bytes into a form that contains no bytes with value zero (0x00). The input packet of bytes can contain bytes in the full range of 0x00 to 0xFF. The COBS encoded packet is guaranteed to generate packets with bytes only in the range 0x01 to 0xFF. Thus, in a communication protocol, packet boundaries can be reliably delimited with 0x00 bytes.
39     '';
40     homepage = "https://github.com/cmcqueen/cobs-python/";
41     license = licenses.mit;
42     maintainers = teams.ororatech.members;
43   };