mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
python312Packages.pyais: init at 2.6.5
Module for decoding and encoding AIS messages (AIVDM/AIVDO) https://github.com/M0r13n/pyais
This commit is contained in:
parent
714b1db7b5
commit
4b051a6797
49
pkgs/development/python-modules/pyais/default.nix
Normal file
49
pkgs/development/python-modules/pyais/default.nix
Normal file
@ -0,0 +1,49 @@
|
||||
{
|
||||
lib,
|
||||
attrs,
|
||||
bitarray,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyais";
|
||||
version = "2.6.5";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "M0r13n";
|
||||
repo = "pyais";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-/I/4ATvX/0ya8xtineXyjSFJBGhDNy/tosh2NdnKLK4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
attrs
|
||||
bitarray
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "pyais" ];
|
||||
|
||||
disabledTestPaths = [
|
||||
# Tests the examples which have additional requirements
|
||||
"tests/test_examples.py"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module for decoding and encoding AIS messages (AIVDM/AIVDO)";
|
||||
homepage = "https://github.com/M0r13n/pyais";
|
||||
changelog = "https://github.com/M0r13n/pyais/blob/${version}/CHANGELOG.txt";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -10599,6 +10599,8 @@ self: super: with self; {
|
||||
|
||||
pyairvisual = callPackage ../development/python-modules/pyairvisual { };
|
||||
|
||||
pyais = callPackage ../development/python-modules/pyais { };
|
||||
|
||||
pyalgotrade = callPackage ../development/python-modules/pyalgotrade { };
|
||||
|
||||
pyamg = callPackage ../development/python-modules/pyamg { };
|
||||
|
Loading…
Reference in New Issue
Block a user