lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python311Packages.pyfronius: 0.7.1 -> 0.7.2

Changelog: https://github.com/nielstron/pyfronius/releases/tag/release-0.7.2

+8 -13
+8 -13
pkgs/development/python-modules/pyfronius/default.nix
··· 2 2 , aiohttp 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 - , fetchpatch 6 5 , pythonOlder 7 6 , pytestCheckHook 8 7 }: 9 8 10 9 buildPythonPackage rec { 11 10 pname = "pyfronius"; 12 - version = "0.7.1"; 11 + version = "0.7.2"; 12 + format = "setuptools"; 13 13 14 - disabled = pythonOlder "3.6"; 14 + disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "nielstron"; 18 18 repo = pname; 19 19 rev = "release-${version}"; 20 - sha256 = "1xwx0c1dp2374bwigzwhvcj4577vrxyhn6i5zv73k9ydc7w1xgyz"; 20 + hash = "sha256-eWe4nXKW9oP9lqehy6BK7ABaIqP3dgRX6ymW1Okfd9g="; 21 21 }; 22 22 23 - patches = [ 24 - (fetchpatch { 25 - # Python3.10 compatibility; https://github.com/nielstron/pyfronius/pull/7 26 - url = "https://github.com/nielstron/pyfronius/commit/9deb209d4246ff575cd3c4c5373037bf11df6719.patch"; 27 - hash = "sha256-srXYCvp86kGYUYZIXMcu68hEbkTspD945J+hc/AhqSw="; 28 - }) 29 - ]; 30 - 31 23 propagatedBuildInputs = [ 32 24 aiohttp 33 25 ]; ··· 36 28 pytestCheckHook 37 29 ]; 38 30 39 - pythonImportsCheck = [ "pyfronius" ]; 31 + pythonImportsCheck = [ 32 + "pyfronius" 33 + ]; 40 34 41 35 meta = with lib; { 42 36 description = "Python module to communicate with Fronius Symo"; 43 37 homepage = "https://github.com/nielstron/pyfronius"; 38 + changelog = "https://github.com/nielstron/pyfronius/releases/tag/release-${version}"; 44 39 license = with licenses; [ mit ]; 45 40 maintainers = with maintainers; [ fab ]; 46 41 };