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