python3Packages.asyncstdlib: update ordering

This commit is contained in:
Fabian Affolter 2022-03-28 20:46:45 +02:00 committed by GitHub
parent 2f2049b1fd
commit 6d90a2cbf1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,14 +9,15 @@
buildPythonPackage rec {
pname = "asyncstdlib";
version = "3.10.4";
disabled = pythonOlder "3.7";
format = "flit";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "maxfischer2781";
repo = pname;
rev = "v${version}";
sha256 = "sha256-zPWXI5iHMCkSVjyNRcXplTadobYCeMv3Unjt+QVF8D8=";
hash = "sha256-zPWXI5iHMCkSVjyNRcXplTadobYCeMv3Unjt+QVF8D8=";
};
propagatedBuildInputs = [
@ -27,7 +28,9 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "asyncstdlib" ];
pythonImportsCheck = [
"asyncstdlib"
];
meta = with lib; {
description = "Python library that extends the Python asyncio standard library";