9 buildPythonPackage rec {
10 pname = "dataclass-factory";
12 format = "setuptools";
14 src = fetchFromGitHub {
16 repo = "dataclass-factory";
18 hash = "sha256-0BIWgyAV1hJzFX4xYFqswvQi5F1Ce+V9FKSmNYuJfZM=";
21 nativeCheckInputs = [ nose2 ];
23 checkInputs = [ typing-extensions ];
25 pythonImportsCheck = [ "dataclass_factory" ];
36 description = "Modern way to convert python dataclasses or other objects to and from more common types like dicts or json-like structures";
37 homepage = "https://github.com/reagento/dataclass-factory";
38 changelog = "https://github.com/reagento/dataclass-factory/releases/tag/${src.rev}";
39 license = licenses.asl20;
40 maintainers = with maintainers; [ figsoda ];