vscode-extensions.yoavbls.pretty-ts-errors: 0.5.4 -> 0.6.1 (#363464)
[NixPkgs.git] / pkgs / development / python-modules / asyncmy / default.nix
blob15a2b0b7cb97a4f15040d379c330d21c8a6110ec
2   lib,
3   buildPythonPackage,
4   cython,
5   fetchFromGitHub,
6   poetry-core,
7   pythonOlder,
8   setuptools,
9 }:
11 buildPythonPackage rec {
12   pname = "asyncmy";
13   version = "0.2.10";
14   format = "pyproject";
16   disabled = pythonOlder "3.7";
18   src = fetchFromGitHub {
19     owner = "long2ice";
20     repo = pname;
21     tag = "v${version}";
22     hash = "sha256-HQZmt22yPYaWfJzL20+jBc855HR4dVW983Z0LrN1Xa0=";
23   };
25   nativeBuildInputs = [
26     cython
27     poetry-core
28     setuptools
29   ];
31   # Not running tests as aiomysql is missing support for pymysql>=0.9.3
32   doCheck = false;
34   pythonImportsCheck = [ "asyncmy" ];
36   meta = with lib; {
37     description = "Python module to interact with MySQL/mariaDB";
38     homepage = "https://github.com/long2ice/asyncmy";
39     license = licenses.asl20;
40     maintainers = with maintainers; [ fab ];
41   };