1{ lib, buildPythonPackage, fetchPypi,
2 six, pytest, pytest-runner, pytest-cov, coverage
3}:
4buildPythonPackage rec {
5 pname = "libais";
6 version = "0.17";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "0pyka09h8nb0vlzh14npq4nxmzg1046lr3klgn97dsf5k0iflapb";
11 };
12
13 # data files missing
14 doCheck = false;
15
16 checkInputs = [ pytest pytest-runner pytest-cov coverage ];
17 propagatedBuildInputs = [ six ];
18
19 meta = with lib; {
20 homepage = "https://github.com/schwehr/libais";
21 description = "Library for decoding maritime Automatic Identification System messages";
22 license = licenses.asl20;
23 platforms = platforms.unix;
24 };
25}