mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
Merge pull request #256587 from r-ryantm/auto-update/python310Packages.pykka
python310Packages.pykka: 3.1.1 -> 4.0.0
This commit is contained in:
commit
5e2c8df99e
@ -5,34 +5,44 @@
|
||||
, poetry-core
|
||||
, pytestCheckHook
|
||||
, pytest-mock
|
||||
, typing-extensions
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pykka";
|
||||
version = "3.1.1";
|
||||
version = "4.0.0";
|
||||
format = "pyproject";
|
||||
disabled = pythonOlder "3.6.1";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jodal";
|
||||
repo = pname;
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-bvRjFpXufGygTgPfEOJOCXFbMy3dNlrTHlGoaIG/Fbs=";
|
||||
hash = "sha256-xFEEv4UAKv/H//7OIBSb9juwmuH4xWd6BKBXaX2GwFU=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = lib.optionals (pythonOlder "3.10") [
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
pytest-mock
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pykka"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://www.pykka.org/";
|
||||
description = "A Python implementation of the actor model";
|
||||
changelog = "https://github.com/jodal/pykka/blob/v${version}/docs/changes.rst";
|
||||
changelog = "https://github.com/jodal/pykka/releases/tag/v${version}";
|
||||
maintainers = with maintainers; [ marsam ];
|
||||
license = licenses.asl20;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user