linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / libais / default.nix
blob33710c6682dc6408016be24b2b0877cb0b45a3c1
1 { lib, buildPythonPackage, fetchPypi,
2   six, pytest, pytestrunner, pytestcov, coverage
3 }:
4 buildPythonPackage rec {
5   pname = "libais";
6   version = "0.17";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "0pyka09h8nb0vlzh14npq4nxmzg1046lr3klgn97dsf5k0iflapb";
11   };
13   # data files missing
14   doCheck = false;
16   checkInputs = [ pytest pytestrunner pytestcov coverage ];
17   propagatedBuildInputs = [ six ];
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   };