summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-10-30 20:49:49 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-10-30 20:49:49 +0100
commit4dec4ce11eec7e1cea552778c6eacae5c40cfcab (patch)
tree4ce2c40d6d7f5af7766e4dad1f3610d90290cb92
parentdc3446688c29ae22a0b424707b15aae3616589a7 (diff)
downloadnixpkgs-4dec4ce11eec7e1cea552778c6eacae5c40cfcab.tar
nixpkgs-4dec4ce11eec7e1cea552778c6eacae5c40cfcab.tar.gz
nixpkgs-4dec4ce11eec7e1cea552778c6eacae5c40cfcab.tar.bz2
nixpkgs-4dec4ce11eec7e1cea552778c6eacae5c40cfcab.tar.lz
nixpkgs-4dec4ce11eec7e1cea552778c6eacae5c40cfcab.tar.xz
nixpkgs-4dec4ce11eec7e1cea552778c6eacae5c40cfcab.tar.zst
nixpkgs-4dec4ce11eec7e1cea552778c6eacae5c40cfcab.zip
python310Packages.asyncmy: add setuptools
-rw-r--r--pkgs/development/python-modules/asyncmy/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/asyncmy/default.nix b/pkgs/development/python-modules/asyncmy/default.nix
index 8356b62b62e..b81c4d2c696 100644
--- a/pkgs/development/python-modules/asyncmy/default.nix
+++ b/pkgs/development/python-modules/asyncmy/default.nix
@@ -4,6 +4,7 @@
 , fetchFromGitHub
 , poetry-core
 , pythonOlder
+, setuptools
 }:
 
 buildPythonPackage rec {
@@ -23,10 +24,10 @@ buildPythonPackage rec {
   nativeBuildInputs = [
     cython
     poetry-core
+    setuptools
   ];
 
-  # Not running tests as aiomysql is missing support for
-  # pymysql>=0.9.3
+  # Not running tests as aiomysql is missing support for pymysql>=0.9.3
   doCheck = false;
 
   pythonImportsCheck = [