mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 16:15:05 +00:00
71 lines
1.2 KiB
Nix
71 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, msgpack
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pyyaml
|
|
, ruamel-yaml
|
|
, toml
|
|
, tomli
|
|
, tomli-w
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-box";
|
|
version = "6.1.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cdgriffith";
|
|
repo = "Box";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-42VDZ4aASFFWhRY3ApBQ4dq76eD1flZtxUM9hpA9iiI=";
|
|
};
|
|
|
|
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
|
|
];
|
|
};
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
] ++ passthru.optional-dependencies.all;
|
|
|
|
pythonImportsCheck = [
|
|
"box"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python dictionaries with advanced dot notation access";
|
|
homepage = "https://github.com/cdgriffith/Box";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|