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