biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pyais / default.nix
blob2ed166b9a78bf659dd853895290af6e208dad22d
2   lib,
3   attrs,
4   bitarray,
5   buildPythonPackage,
6   fetchFromGitHub,
7   pytestCheckHook,
8   pythonOlder,
9   setuptools,
12 buildPythonPackage rec {
13   pname = "pyais";
14   version = "2.8.0";
15   pyproject = true;
17   disabled = pythonOlder "3.8";
19   src = fetchFromGitHub {
20     owner = "M0r13n";
21     repo = "pyais";
22     rev = "refs/tags/v${version}";
23     hash = "sha256-qggtwz6cSz5mLKLVY0i7gWs09EcOoxlWWQoHZv+TDc8=";
24   };
26   build-system = [ setuptools ];
28   dependencies = [
29     attrs
30     bitarray
31   ];
33   nativeCheckInputs = [ pytestCheckHook ];
35   pythonImportsCheck = [ "pyais" ];
37   disabledTestPaths = [
38     # Tests the examples which have additional requirements
39     "tests/test_examples.py"
40   ];
42   meta = with lib; {
43     description = "Module for decoding and encoding AIS messages (AIVDM/AIVDO)";
44     homepage = "https://github.com/M0r13n/pyais";
45     changelog = "https://github.com/M0r13n/pyais/blob/v${version}/CHANGELOG.txt";
46     license = licenses.mit;
47     maintainers = with maintainers; [ fab ];
48   };