depot/third_party/nixpkgs/pkgs/development/python-modules/pytomlpp/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

63 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pybind11,
pytestCheckHook,
python-dateutil,
doxygen,
python,
pelican,
matplotlib,
}:
buildPythonPackage rec {
pname = "pytomlpp";
version = "1.0.13";
format = "setuptools";
src = fetchFromGitHub {
owner = "bobfang1992";
repo = pname;
rev = "v${version}";
fetchSubmodules = true;
hash = "sha256-QJeXvj1M3Vq5ctmx7RhczONsPRXAecv3WhJgKWtNK+M=";
};
buildInputs = [ pybind11 ];
nativeCheckInputs = [
pytestCheckHook
python-dateutil
doxygen
python
pelican
matplotlib
];
# pelican requires > 2.7
doCheck = !pythonOlder "3.6";
disabledTests = [
# incompatible with pytest7
# https://github.com/bobfang1992/pytomlpp/issues/66
"test_loads_valid_toml_files"
"test_round_trip_for_valid_toml_files"
"test_decode_encode_binary"
];
preCheck = ''
cd tests
'';
pythonImportsCheck = [ "pytomlpp" ];
meta = with lib; {
description = "A python wrapper for tomlplusplus";
homepage = "https://github.com/bobfang1992/pytomlpp";
license = licenses.mit;
maintainers = with maintainers; [ evils ];
};
}