mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
python312Packages.ttn-client: 1.0.0 -> 1.1.0
Diff: https://github.com/angelnu/thethingsnetwork_python_client/compare/refs/tags/v1.0.0...v1.1.0 Changelog: https://github.com/angelnu/thethingsnetwork_python_client/releases/tag/v1.1.0
This commit is contained in:
parent
1f590d440e
commit
3edd3bb25c
@ -4,13 +4,14 @@
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
hatchling,
|
||||
pytest-asyncio,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ttn-client";
|
||||
version = "1.0.0";
|
||||
version = "1.1.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
@ -19,17 +20,25 @@ buildPythonPackage rec {
|
||||
owner = "angelnu";
|
||||
repo = "thethingsnetwork_python_client";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-AVEPOsEV/oJ5qM0w18dokH2R6zr1kvvJ1diR7GWqJwg=";
|
||||
hash = "sha256-MnQEYPrkJVs+yxRRYF5FpDDc6k6qAbAnSzNl+p1bmgY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ hatchling ];
|
||||
|
||||
propagatedBuildInputs = [ aiohttp ];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
checkInputs = [
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "ttn_client" ];
|
||||
|
||||
disabledTests = [
|
||||
# Test require network access
|
||||
"test_connection_auth_error"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module to fetch/receive and parse uplink messages from The Thinks Network";
|
||||
homepage = "https://github.com/angelnu/thethingsnetwork_python_client";
|
||||
|
Loading…
Reference in New Issue
Block a user