python312Packages.aiomultiprocess: refactor

This commit is contained in:
Fabian Affolter 2024-04-24 18:03:27 +02:00
parent e4a89cc990
commit 8153410c68
1 changed files with 5 additions and 4 deletions

View File

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