lol

python3Packages.pykka: 4.0.2 -> 4.1.1

https://github.com/jodal/pykka/releases/tag/v4.1.1

+7 -5
+7 -5
pkgs/development/python-modules/pykka/default.nix
··· 4 4 pythonOlder, 5 5 fetchFromGitHub, 6 6 poetry-core, 7 + pydantic, 7 8 pytestCheckHook, 8 9 pytest-mock, 9 10 typing-extensions, ··· 11 12 12 13 buildPythonPackage rec { 13 14 pname = "pykka"; 14 - version = "4.0.2"; 15 + version = "4.1.1"; 15 16 format = "pyproject"; 16 17 17 18 disabled = pythonOlder "3.8"; ··· 20 21 owner = "jodal"; 21 22 repo = pname; 22 23 tag = "v${version}"; 23 - hash = "sha256-2baFwZPNuVU39Kt5B8QvGKu7jMbg+GZ3ROoTxzPOXac="; 24 + hash = "sha256-n9TgXcmUEIQdqtrY+9T+EtPys+7OzXCemRwNPj1xPDw="; 24 25 }; 25 26 26 - nativeBuildInputs = [ poetry-core ]; 27 + build-system = [ poetry-core ]; 27 28 28 - propagatedBuildInputs = lib.optionals (pythonOlder "3.10") [ typing-extensions ]; 29 + dependencies = lib.optionals (pythonOlder "3.10") [ typing-extensions ]; 29 30 30 31 nativeCheckInputs = [ 32 + pydantic 31 33 pytestCheckHook 32 34 pytest-mock 33 35 ]; ··· 37 39 meta = with lib; { 38 40 homepage = "https://www.pykka.org/"; 39 41 description = "Python implementation of the actor model"; 40 - changelog = "https://github.com/jodal/pykka/releases/tag/v${version}"; 42 + changelog = "https://github.com/jodal/pykka/releases/tag/${src.tag}"; 41 43 maintainers = [ ]; 42 44 license = licenses.asl20; 43 45 };