8 buildPythonPackage rec {
11 format = "setuptools";
13 src = fetchFromGitHub {
15 repo = "python-jsonable";
16 rev = "refs/tags/${version}";
17 hash = "sha256-3FIzG2djSZOPDdoYeKqs3obQjgHrFtyp0sdBwZakkHA=";
25 pythonImportsCheck = [ "jsonable" ];
28 description = "Provides an abstract base class and utilities for defining trivially JSONable python objects";
29 homepage = "https://github.com/halfak/python-jsonable";
30 license = licenses.mit;
31 maintainers = with maintainers; [ GaetanLepage ];