fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
cython,
|
|
fetchPypi,
|
|
future,
|
|
pytestCheckHook,
|
|
pythonAtLeast,
|
|
pythonOlder,
|
|
hatchling,
|
|
hatch-vcs,
|
|
toolz,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "in-n-out";
|
|
version = "0.2.1";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
pname = "in_n_out";
|
|
inherit version;
|
|
hash = "sha256-Q83it96YHUGm1wYYore9mJSBCVkipT6tTcdfK71d/+o=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cython
|
|
hatchling
|
|
hatch-vcs
|
|
];
|
|
|
|
propagatedBuildInputs = [ future ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
toolz
|
|
];
|
|
|
|
pythonImportsCheck = [ "in_n_out" ];
|
|
|
|
disabledTestPaths = lib.optionals (pythonAtLeast "3.11") [
|
|
# Fatal Python error
|
|
"tests/test_injection.py"
|
|
"tests/test_processors.py"
|
|
"tests/test_providers.py"
|
|
"tests/test_store.py"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module for dependency injection and result processing";
|
|
homepage = "https://github.com/pyapp-kit/in-n-out";
|
|
changelog = "https://github.com/pyapp-kit/in-n-out/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|