Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / minidb / default.nix
blob8bd0aea36ca47ce802503f3e8365406ba71ac126
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "minidb";
10   version = "2.0.7";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchFromGitHub {
16     owner = "thp";
17     repo = "minidb";
18     rev = "refs/tags/${version}";
19     hash = "sha256-0f2usKoHs4NO/Ir8MhyiAVZFYnUkVH5avdh3QdHzY6s=";
20   };
22   nativeCheckInputs = [
23     pytestCheckHook
24   ];
26   pythonImportsCheck = [
27     "minidb"
28   ];
30   meta = with lib; {
31     description = "SQLite3-based store for Python objects";
32     homepage = "https://thp.io/2010/minidb/";
33     license = licenses.isc;
34     maintainers = with maintainers; [ tv ];
35   };