nixpkgs/pkgs/development/python-modules/asyncmy/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

44 lines
831 B
Nix

{ lib
, buildPythonPackage
, cython
, fetchFromGitHub
, poetry-core
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "asyncmy";
version = "0.2.7";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "long2ice";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-mkYh1fmhtBZ2DyL7a2RduTm+ig4Xnk5Ps1Tm0DS/OEc=";
};
nativeBuildInputs = [
cython
poetry-core
setuptools
];
# Not running tests as aiomysql is missing support for pymysql>=0.9.3
doCheck = false;
pythonImportsCheck = [
"asyncmy"
];
meta = with lib; {
description = "Python module to interact with MySQL/mariaDB";
homepage = "https://github.com/long2ice/asyncmy";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}