summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-10-30 23:39:35 +0100
committerGitHub <noreply@github.com>2022-10-30 23:39:35 +0100
commitfd21e7cd7238f48b0d261798e30f186bcbd149e7 (patch)
tree8f4a9cc4f767ec4a14ead1b7ffa0885fca15305d
parentbe85ae66dcb40b4c5dc84dbaec6fae1cfd449cd5 (diff)
parent4dec4ce11eec7e1cea552778c6eacae5c40cfcab (diff)
downloadnixpkgs-fd21e7cd7238f48b0d261798e30f186bcbd149e7.tar
nixpkgs-fd21e7cd7238f48b0d261798e30f186bcbd149e7.tar.gz
nixpkgs-fd21e7cd7238f48b0d261798e30f186bcbd149e7.tar.bz2
nixpkgs-fd21e7cd7238f48b0d261798e30f186bcbd149e7.tar.lz
nixpkgs-fd21e7cd7238f48b0d261798e30f186bcbd149e7.tar.xz
nixpkgs-fd21e7cd7238f48b0d261798e30f186bcbd149e7.tar.zst
nixpkgs-fd21e7cd7238f48b0d261798e30f186bcbd149e7.zip
Merge pull request #198707 from fabaff/asyncmy-fix
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 = [