blob: fd7f1e2a118416b5e28df5ba38fc66abadb10651 (
plain)
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
|
{
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 = {
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 = lib.licenses.asl20;
maintainers = [ ];
};
}
|