1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "kconfiglib";
9 version = "14.1.0";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "0g690bk789hsry34y4ahvly5c8w8imca90ss4njfqf7m2qicrlmy";
15 };
16
17 # doesnt work out of the box but might be possible
18 doCheck = false;
19
20 meta = with lib; {
21 description = "A flexible Python 2/3 Kconfig implementation and library";
22 homepage = "https://github.com/ulfalizer/Kconfiglib";
23 license = licenses.isc;
24 maintainers = with maintainers; [ teto ];
25 };
26}