Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / asyncmy / default.nix
blob76a6d86a5beee0f06492e7f7769dd0d7b765fe58
1 { lib
2 , buildPythonPackage
3 , cython
4 , fetchFromGitHub
5 , poetry-core
6 , pythonOlder
7 , setuptools
8 }:
10 buildPythonPackage rec {
11   pname = "asyncmy";
12   version = "0.2.9";
13   format = "pyproject";
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "long2ice";
19     repo = pname;
20     rev = "refs/tags/v${version}";
21     hash = "sha256-BjjC8pvvQfnvaExhei+F4a2eryHiRbI527BZFLpJk2w=";
22   };
24   nativeBuildInputs = [
25     cython
26     poetry-core
27     setuptools
28   ];
30   # Not running tests as aiomysql is missing support for pymysql>=0.9.3
31   doCheck = false;
33   pythonImportsCheck = [
34     "asyncmy"
35   ];
37   meta = with lib; {
38     description = "Python module to interact with MySQL/mariaDB";
39     homepage = "https://github.com/long2ice/asyncmy";
40     license = licenses.asl20;
41     maintainers = with maintainers; [ fab ];
42   };