10 buildPythonPackage rec {
13 format = "setuptools";
17 src = fetchFromGitHub {
20 rev = "refs/tags/${version}";
21 hash = "sha256-rUG6TXGdF+XaRTFn2luffYw+1EEChxtLgQx2Gn+7J6A=";
28 # Project uses custom test setup to exclude some tests by default, so using pytest
29 # requires more maintenance
30 # https://github.com/rogerbinns/apsw/issues/335
32 ${python.interpreter} setup.py test
35 pythonImportsCheck = [
40 description = "A Python wrapper for the SQLite embedded relational database engine";
41 homepage = "https://github.com/rogerbinns/apsw";
42 license = licenses.zlib;
43 maintainers = with maintainers; [ gador ];