Unverified Commit 81451ec6 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.solarlog-cli: 0.6.1 -> 0.7.0 (#477709)

parents 4f3531b7 dbbbfa54
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@

buildPythonPackage rec {
  pname = "solarlog-cli";
  version = "0.6.1";
  version = "0.7.0";
  pyproject = true;

  disabled = pythonOlder "3.12";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
    owner = "dontinelli";
    repo = "solarlog_cli";
    tag = "v${version}";
    hash = "sha256-mO/EPJ/CF3FM1tPnQOT9vit6WjV+jsWrTQ1MH2UUIIc=";
    hash = "sha256-ryhC2RpLK7olglgOOmja4LzUpVyi6vt6vj3EntUYZx0=";
  };

  build-system = [ hatchling ];
+3 −1
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@
  exceptiongroup,
  pytest-trio,
  pytestCheckHook,
  pythonAtLeast,
  pythonOlder,
}:

@@ -18,7 +19,8 @@ buildPythonPackage rec {
  version = "0.15.0";
  pyproject = true;

  disabled = pythonOlder "3.8";
  # https://github.com/python-trio/trio-asyncio/issues/160
  disabled = pythonAtLeast "3.14";

  src = fetchFromGitHub {
    owner = "python-trio";