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

python313Packages.lacuscore: 1.16.6 -> 1.18.0

Changelog: https://github.com/ail-project/LacusCore/releases/tag/v1.18.0

+6 -4
+6 -4
pkgs/development/python-modules/lacuscore/default.nix
··· 6 6 dnspython, 7 7 eval-type-backport, 8 8 fetchFromGitHub, 9 + orjson, 9 10 playwrightcapture, 10 11 poetry-core, 11 12 pydantic, ··· 18 17 19 18 buildPythonPackage rec { 20 19 pname = "lacuscore"; 21 - version = "1.16.6"; 20 + version = "1.18.0"; 22 21 pyproject = true; 23 - 24 - disabled = pythonOlder "3.9"; 25 22 26 23 src = fetchFromGitHub { 27 24 owner = "ail-project"; 28 25 repo = "LacusCore"; 29 26 tag = "v${version}"; 30 - hash = "sha256-LcqGJU+wMKTF1E4asysQPcfURqmgc4WQompPpHEgjb8="; 27 + hash = "sha256-+K2zfUGhjQNGIxsh3YHYAH4G3mAoysdpMnscshwl7xI="; 31 28 }; 32 29 33 30 pythonRelaxDeps = [ 31 + "dnspython" 32 + "orjson" 34 33 "pydantic" 35 34 "redis" 36 35 "requests" ··· 41 40 dependencies = [ 42 41 defang 43 42 dnspython 43 + orjson 44 44 playwrightcapture 45 45 pydantic 46 46 redis