2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildPythonPackage, fetchPypi,
|
2017-02-27 07:34:34 -08:00
|
|
|
six, pytest, pytestrunner, pytestcov, coverage
|
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "libais";
|
2018-04-11 08:25:47 -07:00
|
|
|
version = "0.17";
|
2017-02-27 07:34:34 -08:00
|
|
|
|
2018-04-11 08:25:47 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0pyka09h8nb0vlzh14npq4nxmzg1046lr3klgn97dsf5k0iflapb";
|
2017-02-27 07:34:34 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
# data files missing
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-04-11 08:25:47 -07:00
|
|
|
checkInputs = [ pytest pytestrunner pytestcov coverage ];
|
2017-02-27 07:34:34 -08:00
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/schwehr/libais";
|
2017-02-27 07:34:34 -08:00
|
|
|
description = "Library for decoding maritime Automatic Identification System messages";
|
|
|
|
license = licenses.asl20;
|
2019-02-17 05:00:33 -08:00
|
|
|
platforms = platforms.unix;
|
2017-02-27 07:34:34 -08:00
|
|
|
};
|
|
|
|
}
|