472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
35 lines
721 B
Nix
35 lines
721 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
testers,
|
|
zpp,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "zpp";
|
|
version = "1.1.0";
|
|
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jbigot";
|
|
repo = "zpp";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-Jvh80TfOonZ57lb+4PulVOUKi9Y74nplIcrPzlUPw3M=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
passthru = {
|
|
tests.version = testers.testVersion { package = zpp; };
|
|
};
|
|
|
|
meta = {
|
|
description = "The 'Z' pre-processor, the last preprocessor you'll ever need";
|
|
homepage = "https://github.com/jbigot/zpp";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "zpp";
|
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
|
};
|
|
}
|