Unverified Commit 957a758b authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #286740 from fabaff/pyfronius-bump

python311Packages.pyfronius: 0.7.2 -> 0.7.3
parents 6dcc759c 1fe9d826
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
@@ -4,22 +4,27 @@
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, setuptools
}:

buildPythonPackage rec {
  pname = "pyfronius";
  version = "0.7.2";
  format = "setuptools";
  version = "0.7.3";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "nielstron";
    repo = pname;
    repo = "pyfronius";
    rev = "release-${version}";
    hash = "sha256-eWe4nXKW9oP9lqehy6BK7ABaIqP3dgRX6ymW1Okfd9g=";
    hash = "sha256-7GtY/6uuLe7K9T7xMVt2ytpA6MKVWnyEoLtA5dSMiH4=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    aiohttp
  ];