Files
nixpkgs/pkgs/development/python-modules/convertertools/default.nix
T
Martin Weinelt f6b448f98e python3Packages.convertertools: 0.6.1 -> 1.1.0
https://github.com/bluetooth-devices/convertertools/blob/v1.1.0/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:33 +01:00

51 lines
966 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
cython,
poetry-core,
setuptools,
# checks
pytestCheckHook,
pytest-codspeed,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "convertertools";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "bluetooth-devices";
repo = "convertertools";
tag = "v${version}";
hash = "sha256-YLEZGTq3wtiLsqQkdxcdM4moUEYPN29Uai5o81FUtVc=";
};
build-system = [
cython
poetry-core
setuptools
];
nativeCheckInputs = [
pytestCheckHook
pytest-codspeed
pytest-cov-stub
];
pythonImportsCheck = [ "convertertools" ];
meta = {
description = "Tools for converting python data types";
homepage = "https://github.com/bluetooth-devices/convertertools";
changelog = "https://github.com/bluetooth-devices/convertertools/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = [ ];
};
}