pythonPackages.libais: init at 0.16
This commit is contained in:
parent
6f3e071755
commit
a9d404c616
25
pkgs/development/python-modules/libais/default.nix
Normal file
25
pkgs/development/python-modules/libais/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchurl,
|
||||||
|
six, pytest, pytestrunner, pytestcov, coverage
|
||||||
|
}:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "libais-${version}";
|
||||||
|
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
|
||||||
|
};
|
||||||
|
}
|
@ -5678,6 +5678,8 @@ in {
|
|||||||
|
|
||||||
leather = callPackage ../development/python-modules/leather { };
|
leather = callPackage ../development/python-modules/leather { };
|
||||||
|
|
||||||
|
libais = callPackage ../development/python-modules/libais { };
|
||||||
|
|
||||||
libtmux = buildPythonPackage rec {
|
libtmux = buildPythonPackage rec {
|
||||||
name = "libtmux-${version}";
|
name = "libtmux-${version}";
|
||||||
version = "0.6.0";
|
version = "0.6.0";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user