Merge pull request #286740 from fabaff/pyfronius-bump

python311Packages.pyfronius: 0.7.2 -> 0.7.3
This commit is contained in:
Nick Cao 2024-02-06 09:51:36 -05:00 committed by GitHub
commit 957a758bd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
];