2017-02-27 16:34:34 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchurl,
|
|
|
|
six, pytest, pytestrunner, pytestcov, coverage
|
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "libais";
|
|
|
|
name = "${pname}-${version}";
|
2017-02-27 16:34:34 +01:00
|
|
|
version = "0.16";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://pypi/l/libais/${name}.tar.bz2";
|
|
|
|
sha256 = "14dsh5k32ryszwdn6p45wrqp4ska6cc9qpm6lk5c5d1p4rc7wnhq";
|
|
|
|
};
|
|
|
|
|
|
|
|
# data files missing
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
buildInputs = [ pytest pytestrunner pytestcov coverage ];
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/schwehr/libais;
|
|
|
|
description = "Library for decoding maritime Automatic Identification System messages";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux; # It currently fails to build on darwin
|
|
|
|
};
|
|
|
|
}
|