nixpkgs/pkgs/development/python-modules/kconfiglib/default.nix
2019-12-30 16:46:43 +01:00

22 lines
556 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "kconfiglib";
version = "13.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "5bd148042654788a30ead478208abd44d5df971013a226b0aabae3c4243561bd";
};
# 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 ];
};
}