depot/third_party/nixpkgs/pkgs/development/python-modules/jsonpickle/default.nix

50 lines
873 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, pythonAtLeast
# build-system
, setuptools
, setuptools-scm
# tests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jsonpickle";
version = "3.0.4";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-obFMjWIhzY85TyqX5zXqHX7ckn+9E1sm8vhwBlfIxis=";
};
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;
};
}