python312Packages.wadler-lindig: init at 0.1.3

This commit is contained in:
Gaetan Lepage
2025-01-27 14:24:22 +01:00
parent dfd6d59d31
commit ff5c205639
2 changed files with 48 additions and 0 deletions
@@ -0,0 +1,46 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
hatchling,
# tests
numpy,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "wadler-lindig";
version = "0.1.3";
pyproject = true;
src = fetchFromGitHub {
owner = "patrick-kidger";
repo = "wadler_lindig";
rev = "v${version}";
hash = "sha256-akb1x9UYbfEwnVS6ahpb42XnEl3y7kk3WkhwD8p7AA4=";
};
build-system = [
hatchling
];
pythonImportsCheck = [
"wadler_lindig"
];
nativeCheckInputs = [
numpy
pytestCheckHook
];
meta = {
description = "A Wadler--Lindig pretty printer for Python";
homepage = "https://github.com/patrick-kidger/wadler_lindig";
changelog = "https://github.com/patrick-kidger/wadler_lindig/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
+2
View File
@@ -17933,6 +17933,8 @@ self: super: with self; {
w3lib = callPackage ../development/python-modules/w3lib { };
wadler-lindig = callPackage ../development/python-modules/wadler-lindig { };
wadllib = callPackage ../development/python-modules/wadllib { };
wagtail = callPackage ../development/python-modules/wagtail { };