about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiofiles
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-03-30 11:02:16 +0200
committerGitHub <noreply@github.com>2023-03-30 11:02:16 +0200
commit1084cae74997b42f90c205f1ecbee23f9aa3439f (patch)
treec2a54199ea0a322b594dabfd524488d7bb446f18 /pkgs/development/python-modules/aiofiles
parent38921dcb59c7c42897840cfdc8374163e6fa7a7e (diff)
python310Packages.aiofiles: update disabled
Diffstat (limited to 'pkgs/development/python-modules/aiofiles')
-rw-r--r--pkgs/development/python-modules/aiofiles/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/aiofiles/default.nix b/pkgs/development/python-modules/aiofiles/default.nix
index 8d32dd9fc35be..28d4f5f368dc8 100644
--- a/pkgs/development/python-modules/aiofiles/default.nix
+++ b/pkgs/development/python-modules/aiofiles/default.nix
@@ -13,12 +13,12 @@ buildPythonPackage rec {
   version = "23.1.0";
   format = "pyproject";
 
-  disabled = pythonOlder "3.6";
+  disabled = pythonOlder "3.7";
 
   src = fetchFromGitHub {
     owner = "Tinche";
     repo = pname;
-    rev = "v${version}";
+    rev = "refs/tags/v${version}";
     hash = "sha256-ouBqqt0CJYxxQqbG9jn4p8zO+nKjqZgPjZpiZic67ss=";
   };
 
@@ -45,10 +45,10 @@ buildPythonPackage rec {
     "aiofiles"
   ];
 
-  meta = {
+  meta = with lib; {
     description = "File support for asyncio";
     homepage = "https://github.com/Tinche/aiofiles";
-    license = with lib.licenses; [ asl20 ];
-    maintainers = with lib.maintainers; [ fridh ];
+    license = with licenses; [ asl20 ];
+    maintainers = with maintainers; [ fridh ];
   };
 }