about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dataclass-factory/default.nix
blob: b6ce77a51f00a2b9c278392ad2de14b1fb151ce3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ lib
, buildPythonPackage
, fetchFromGitHub
, nose2
, typing-extensions
}:

buildPythonPackage rec {
  pname = "dataclass-factory";
  version = "2.16";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "reagento";
    repo = "dataclass-factory";
    rev = version;
    hash = "sha256-0BIWgyAV1hJzFX4xYFqswvQi5F1Ce+V9FKSmNYuJfZM=";
  };

  nativeCheckInputs = [
    nose2
  ];

  checkInputs = [
    typing-extensions
  ];

  pythonImportsCheck = [ "dataclass_factory" ];

  checkPhase = ''
    runHook preCheck

    nose2 -v tests

    runHook postCheck
  '';

  meta = with lib; {
    description = "Modern way to convert python dataclasses or other objects to and from more common types like dicts or json-like structures";
    homepage = "https://github.com/reagento/dataclass-factory";
    changelog = "https://github.com/reagento/dataclass-factory/releases/tag/${src.rev}";
    license = licenses.asl20;
    maintainers = with maintainers; [ figsoda ];
  };
}