python3Packages.pytricia: unstable-2019-01-16 -> 1.3.0

This commit is contained in:
Martin Weinelt
2025-11-21 02:34:01 +01:00
parent 9b3f5ed2e3
commit f1b78a1241
@@ -1,25 +1,31 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchPypi,
setuptools,
}:
buildPythonPackage {
buildPythonPackage rec {
pname = "pytricia";
version = "unstable-2019-01-16";
format = "setuptools";
version = "1.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jsommers";
repo = "pytricia";
rev = "4ba88f68c3125f789ca8cd1cfae156e1464bde87";
sha256 = "0qp5774xkm700g35k5c76pck8pdzqlyzbaqgrz76a1yh67s2ri8h";
# no tags on git repo
src = fetchPypi {
inherit pname version;
hash = "sha256-HDo9aQnhDUycLw/kVCokgeEJ0pqrmcwCfKf+k/jIhT8=";
};
meta = with lib; {
build-system = [ setuptools ];
pythonImportsCheck = [ "pytricia" ];
doCheck = false; # no tests
meta = {
description = "Library for fast IP address lookup in Python";
homepage = "https://github.com/jsommers/pytricia";
license = with licenses; [ lgpl3Plus ];
maintainers = with maintainers; [ mkg ];
license = with lib.licenses; [ lgpl3Plus ];
maintainers = with lib.maintainers; [ mkg ];
};
}