Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
333 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
pkgs,
buildPythonPackage,
setuptools,
}:
buildPythonPackage {
inherit (pkgs.jsonnet) pname version src;
pyproject = true;
build-system = [ setuptools ];
pythonImportsCheck = [ "_jsonnet" ];
meta = {
inherit (pkgs.jsonnet.meta)
description
maintainers
license
homepage
;
};
}