Skip to content

Commit

Permalink
python312Packages.solarlog-cli: 0.1.6 -> 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda committed Aug 28, 2024
1 parent ec8e0d5 commit 0336e9c
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions pkgs/development/python-modules/solarlog-cli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@
fetchFromGitHub,
hatchling,
aiohttp,
mashumaro,
aioresponses,
pytest-aio,
pytestCheckHook,
syrupy,
}:

buildPythonPackage rec {
pname = "solarlog-cli";
version = "0.1.6";
version = "0.2.0";
pyproject = true;

disabled = pythonOlder "3.12";
Expand All @@ -18,17 +23,24 @@ buildPythonPackage rec {
owner = "dontinelli";
repo = "solarlog_cli";
rev = "refs/tags/v${version}";
hash = "sha256-Bliq1n6xH0cZQHueiGDyalIo0zms8zCSpUGq2KH5xZY=";
hash = "sha256-x9MovIKFImu60Ns2sJTy71S22cR9Az/yNMWzGM50y7Y=";
};

build-system = [ hatchling ];

dependencies = [ aiohttp ];
dependencies = [
aiohttp
mashumaro
];

pythonImportsCheck = [ "solarlog_cli" ];

# upstream has no tests
doCheck = false;
nativeCheckInputs = [
aioresponses
pytest-aio
pytestCheckHook
syrupy
];

meta = {
changelog = "https://github.com/dontinelli/solarlog_cli/releases/tag/v${version}";
Expand Down

0 comments on commit 0336e9c

Please sign in to comment.