mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 09:23:37 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, pybind11
|
|
, pytestCheckHook
|
|
, python-dateutil
|
|
, doxygen
|
|
, python
|
|
, pelican
|
|
, matplotlib
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytomlpp";
|
|
version = "1.0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bobfang1992";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
fetchSubmodules = true;
|
|
sha256 = "sha256-QyjIJCSgiSKjqMBvCbOlWYx6rBbKIoDvXez2YnYaPUo=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|