nixpkgs/pkgs/development/python-modules/python-xz/default.nix
Martin Weinelt 2f21287f9a python3Packages.python-xz: 0.5.0 -> 0.6.0
https://github.com/Rogdham/python-xz/blob/v0.6.0/CHANGELOG.md

This commit was automatically generated using update-python-libraries.

Co-authored-by: Michael Daniels <mdaniels5757@gmail.com>
2026-02-01 17:20:10 +01:00

42 lines
856 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
hatch-vcs,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "python-xz";
version = "0.6.0";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "python_xz";
hash = "sha256-yNxRBweZ7p533dndIHoRzJFw6SmFQvgecYcHLg1UNHg=";
};
build-system = [
hatchling
hatch-vcs
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
pythonImportsCheck = [ "xz" ];
meta = {
description = "Pure Python library for seeking within compressed xz files";
homepage = "https://github.com/Rogdham/python-xz";
changelog = "https://github.com/Rogdham/python-xz/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mxmlnkn ];
platforms = lib.platforms.all;
};
}