blob: 4e3fd813144b01df76ff365f5e90cf16f628fe83 (
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
46
47
48
49
|
{ lib
, buildPythonPackage
, fetchPypi
, pythonAtLeast
# build-system
, setuptools
, setuptools-scm
# tests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jsonpickle";
version = "3.0.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-VpH0RJUyeFirOpW5xECnm0HjVCG+Gm4JpHtsm5Qh/QY=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
preCheck = ''
rm pytest.ini
'';
nativeCheckInputs = [
pytestCheckHook
];
disabledTests = lib.optionals (pythonAtLeast "3.12") [
# imports distutils
"test_thing_with_submodule"
];
meta = with lib; {
description = "Python library for serializing any arbitrary object graph into JSON";
downloadPage = "https://github.com/jsonpickle/jsonpickle";
homepage = "http://jsonpickle.github.io/";
license = licenses.bsd3;
};
}
|