11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromSourcehut {
22 rev = "v${version}-release";
23 hash = "sha256-R6Ug4f8KFZNzaNWqWZkLvOwtsawCuerzvHlysr7bd6M=";
26 propagatedBuildInputs = [
35 pythonImportsCheck = [
39 # Some test for hot-reload fails on Darwin, but the rest of the library
40 # should remain usable. (https://todo.sr.ht/~olly/embrace-sql/4)
41 doCheck = !stdenv.isDarwin;
44 description = "Embrace SQL keeps your SQL queries in SQL files";
45 homepage = "https://pypi.org/project/embrace/";
46 license = licenses.asl20;
47 maintainers = with maintainers; [ pacien ];