11 buildPythonPackage rec {
12 pname = "json-tricks";
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
20 repo = "pyjson_tricks";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-xddMc4PvVI+mqB3eeVqECZmdeSKAURsdbOnUAXahqM0=";
32 pythonImportsCheck = [
37 description = "Extra features for Python JSON handling";
38 homepage = "https://github.com/mverleg/pyjson_tricks";
39 license = licenses.bsd3;
40 maintainers = with maintainers; [ bcdarwin ];