nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.devolo-plc-api: 1.3.0 -> 1.3.1

https://github.com/2Fake/devolo_plc_api/releases/tag/v1.3.1

+9 -3
+9 -3
pkgs/development/python-modules/devolo-plc-api/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , httpx 6 5 , protobuf 7 6 , pytest-asyncio ··· 9 10 , pytestCheckHook 10 11 , pythonOlder 11 12 , setuptools-scm 13 + , syrupy 12 14 , zeroconf 13 15 }: 14 16 15 17 buildPythonPackage rec { 16 18 pname = "devolo-plc-api"; 17 - version = "1.3.0"; 19 + version = "1.3.1"; 18 20 format = "pyproject"; 19 21 20 22 disabled = pythonOlder "3.8"; ··· 24 24 owner = "2Fake"; 25 25 repo = "devolo_plc_api"; 26 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-ika0mypHo7a8GCa2eNhOLIhMZ2ASwJOxV4mmAzvJm0E="; 27 + hash = "sha256-wJyBCQ9rk+UwjWhMIeqsIbMR8cXA9Xu+lmubJoOauEg="; 28 28 }; 29 + 30 + postPatch = '' 31 + substituteInPlace pyproject.toml \ 32 + --replace "protobuf>=4.22.0" "protobuf" 33 + ''; 29 34 30 35 SETUPTOOLS_SCM_PRETEND_VERSION = version; 31 36 ··· 49 44 pytest-httpx 50 45 pytest-mock 51 46 pytestCheckHook 47 + syrupy 52 48 ]; 53 49 54 50 pythonImportsCheck = [