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

62 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
cython,
fetchFromGitHub,
msgpack,
poetry-core,
pytestCheckHook,
pythonOlder,
pyyaml,
ruamel-yaml,
setuptools,
toml,
tomli,
tomli-w,
}:
buildPythonPackage rec {
pname = "python-box";
version = "7.1.1";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "cdgriffith";
repo = "Box";
rev = "refs/tags/${version}";
hash = "sha256-oxT2y3um6BZ3bwYa+LWBoTgU+9b+V7XtQdCdECU3Gu0=";
};
nativeBuildInputs = [
cython
setuptools
];
passthru.optional-dependencies = {
all = [
msgpack
ruamel-yaml
toml
];
yaml = [ ruamel-yaml ];
ruamel-yaml = [ ruamel-yaml ];
PyYAML = [ pyyaml ];
tomli = [ tomli-w ] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
toml = [ toml ];
msgpack = [ msgpack ];
};
nativeCheckInputs = [ pytestCheckHook ] ++ passthru.optional-dependencies.all;
pythonImportsCheck = [ "box" ];
meta = with lib; {
description = "Python dictionaries with advanced dot notation access";
homepage = "https://github.com/cdgriffith/Box";
changelog = "https://github.com/cdgriffith/Box/blob/${version}/CHANGES.rst";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}