mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-12 07:54:50 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
26 lines
661 B
Nix
26 lines
661 B
Nix
{ lib, buildPythonPackage, fetchPypi,
|
|
six, pytest, pytest-runner, pytest-cov, coverage
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "libais";
|
|
version = "0.17";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0pyka09h8nb0vlzh14npq4nxmzg1046lr3klgn97dsf5k0iflapb";
|
|
};
|
|
|
|
# data files missing
|
|
doCheck = false;
|
|
|
|
nativeCheckInputs = [ pytest pytest-runner pytest-cov coverage ];
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/schwehr/libais";
|
|
description = "Library for decoding maritime Automatic Identification System messages";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|