1{ stdenv, buildPythonPackage, fetchPypi, 2 six, pytest, pytestrunner, pytestcov, 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 pytestrunner pytestcov coverage ]; 17 propagatedBuildInputs = [ six ]; 18 19 meta = with stdenv.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.linux; # It currently fails to build on darwin 24 }; 25}