nixpkgs/pkgs/development/python-modules/python-box/default.nix
Fabian Affolter 0ff89e52a4 python311Packages.python-box: 7.0.1 -> 7.1.1
Diff: cdgriffith/Box@refs/tags/7.0.1...7.1.1

Changelog: https://github.com/cdgriffith/Box/blob/7.1.1/CHANGES.rst
2023-08-29 16:46:48 +02:00

80 lines
1.3 KiB
Nix

{ lib
, buildPythonPackage
, cython_3
, 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_3
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 ];
};
}