blob: 7c0699bdd3c78155ae76d1cc583d6ada9b456ac6 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonRelaxDepsHook,
poetry-core,
fonttools,
openstep-plist,
ufolib2,
glyphslib,
bump2version,
}:
buildPythonPackage rec {
pname = "bumpfontversion";
version = "0.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "simoncozens";
repo = "bumpfontversion";
tag = "v${version}";
hash = "sha256-qcKZGv/KeeSRBq4SdnuZlurp0CUs40iEQjw9/1LltUg=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'poetry>=' 'poetry-core>=' \
--replace-fail 'poetry.masonry.api' 'poetry.core.masonry.api'
'';
nativeBuildInputs = [ pythonRelaxDepsHook ];
pythonRelaxDeps = [ "glyphslib" ];
build-system = [ poetry-core ];
dependencies = [
fonttools
openstep-plist
ufolib2
glyphslib
bump2version
];
meta = {
description = "Version-bump your font sources";
homepage = "https://github.com/simoncozens/bumpfontversion";
license = lib.licenses.asl20;
mainProgram = "bumpfontversion";
maintainers = with lib.maintainers; [ jopejoe1 ];
};
}
|