22 lines
556 B
Nix
22 lines
556 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "kconfiglib";
|
|
version = "13.1.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "b44af5a6dc0c716926c926ba4c1f301ce286b3a3f292ae359a866eb01dc5260e";
|
|
};
|
|
|
|
# doesnt work out of the box but might be possible
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A flexible Python 2/3 Kconfig implementation and library";
|
|
homepage = https://github.com/ulfalizer/Kconfiglib;
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ teto ];
|
|
};
|
|
}
|