Merge pull request #306580 from fabaff/aiomultiprocess-bump

python312Packages.aiomultiprocess: 0.9.0 -> 0.9.1
This commit is contained in:
Nick Cao 2024-04-25 09:51:46 -04:00 committed by GitHub
commit 299dd12011
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 12 deletions

View File

@ -1,25 +1,27 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, flit-core
, pytestCheckHook
, pythonOlder
{
lib,
buildPythonPackage,
fetchFromGitHub,
flit-core,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "aiomultiprocess";
version = "0.9.0";
format = "pyproject";
version = "0.9.1";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "omnilib";
repo = pname;
rev = "v${version}";
hash = "sha256-yOP69FXDb2Grmtszx7oa6uiJGUar8su3KwqQPI+xjrw=";
repo = "aiomultiprocess";
rev = "refs/tags/v${version}";
hash = "sha256-LWrAr3i2CgOMZFxWi9B3kiou0UtaHdDbpkr6f9pReRA=";
};
nativeBuildInputs = [ flit-core ];
build-system = [ flit-core ];
nativeCheckInputs = [ pytestCheckHook ];