blob: 42d8ae15d0ed4dec17e4a8e8b213ba80047231bb (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools-scm,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "textparser";
version = "0.24.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-VvcI51qp0AKtt22CO6bvFm1+zsHj5MpMHKED+BdWgzU=";
};
nativeBuildInputs = [ setuptools-scm ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "textparser" ];
meta = {
homepage = "https://github.com/eerimoq/textparser";
description = "Text parser";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gray-heron ];
};
}
|