blob: 145bb15682b5cacc288351ae49fc7459cb2528ec (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pyicumessageformat";
version = "1.0.0";
pyproject = true;
build-system = [ setuptools ];
src = fetchPypi {
inherit pname version;
hash = "sha256-s+l8DtEMKxA/DzpwGqZSlwDqCrZuDzsj3I5K7hgfyEA=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pyicumessageformat" ];
meta = {
description = "Unopinionated Python3 parser for ICU MessageFormat";
homepage = "https://github.com/SirStendec/pyicumessageformat/";
# Based on master, as upstream doesn't tag their releases on GitHub anymore
changelog = "https://github.com/SirStendec/pyicumessageformat/blob/master/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ erictapen ];
};
}
|