about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-01-06 08:49:33 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-01-06 08:49:33 +0100
commit8e5d6afe9e5c24b369cca75c69acf7e3a1f3cec6 (patch)
treec8f2dd858bc912aa76d79cb9b86932382b41a6ac
parent3bc4903f60de675f52c2829ce8771abe36eeae1e (diff)
downloadnixlib-8e5d6afe9e5c24b369cca75c69acf7e3a1f3cec6.tar
nixlib-8e5d6afe9e5c24b369cca75c69acf7e3a1f3cec6.tar.gz
nixlib-8e5d6afe9e5c24b369cca75c69acf7e3a1f3cec6.tar.bz2
nixlib-8e5d6afe9e5c24b369cca75c69acf7e3a1f3cec6.tar.lz
nixlib-8e5d6afe9e5c24b369cca75c69acf7e3a1f3cec6.tar.xz
nixlib-8e5d6afe9e5c24b369cca75c69acf7e3a1f3cec6.tar.zst
nixlib-8e5d6afe9e5c24b369cca75c69acf7e3a1f3cec6.zip
python311Packages.asyncstdlib: refactor
-rw-r--r--pkgs/development/python-modules/asyncstdlib/default.nix11
1 files changed, 3 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/asyncstdlib/default.nix b/pkgs/development/python-modules/asyncstdlib/default.nix
index 34132f77afb5..e6b2a2769331 100644
--- a/pkgs/development/python-modules/asyncstdlib/default.nix
+++ b/pkgs/development/python-modules/asyncstdlib/default.nix
@@ -1,7 +1,6 @@
 { lib
 , buildPythonPackage
 , fetchFromGitHub
-, typing-extensions
 , flit-core
 , pytestCheckHook
 , pythonOlder
@@ -10,13 +9,13 @@
 buildPythonPackage rec {
   pname = "asyncstdlib";
   version = "3.12.0";
-  format = "pyproject";
+  pyproject = true;
 
-  disabled = pythonOlder "3.7";
+  disabled = pythonOlder "3.9";
 
   src = fetchFromGitHub {
     owner = "maxfischer2781";
-    repo = pname;
+    repo = "asyncstdlib";
     rev = "refs/tags/v${version}";
     hash = "sha256-ZINCpUtwXZxGTMolfyZh5cBFZV0h7ODhsRcmkRzBTEI=";
   };
@@ -25,10 +24,6 @@ buildPythonPackage rec {
     flit-core
   ];
 
-  propagatedBuildInputs = [
-    typing-extensions
-  ];
-
   nativeCheckInputs = [
     pytestCheckHook
   ];