8 buildPythonPackage rec {
11 format = "setuptools";
13 # Archive on pypi has no tests.
14 src = fetchFromGitHub {
16 repo = "python-pure-cdb";
17 rev = "refs/tags/v${version}";
18 hash = "sha256-7zxQO+oTZJhXfM2yijGXchLixiQRuFTOSESVlEc+T0s=";
21 nativeCheckInputs = [ flake8 ];
23 pythonImportsCheck = [ "cdblib" ];
26 description = "Python library for working with constant databases";
27 homepage = "https://python-pure-cdb.readthedocs.io/en/latest";
28 license = licenses.mit;
29 maintainers = with maintainers; [ kaction ];