blob: 507a84376af84a857ce1795125b43c92208fe24d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
testers,
zpp,
}:
buildPythonPackage rec {
pname = "zpp";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jbigot";
repo = "zpp";
tag = version;
hash = "sha256-Jvh80TfOonZ57lb+4PulVOUKi9Y74nplIcrPzlUPw3M=";
};
build-system = [ setuptools ];
passthru = {
tests.version = testers.testVersion { package = zpp; };
};
meta = {
description = "'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 ];
};
}
|