Files
nixpkgs/pkgs/development/python-modules/in-place/default.nix
2025-03-09 00:53:11 +01:00

42 lines
840 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pytest-cov-stub,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "in-place";
version = "1.0.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jwodder";
repo = "inplace";
tag = "v${version}";
hash = "sha256-PyOSuHHtftEPwL3mTwWYStZNXYX3EhptKfTu0PJjOZ8=";
};
build-system = [ hatchling ];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "in_place" ];
meta = with lib; {
description = "In-place file processing";
homepage = "https://github.com/jwodder/inplace";
changelog = "https://github.com/jwodder/inplace/blob/${src.tag}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ samuela ];
};
}