Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 545 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "kconfiglib"; 5 version = "10.36.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1qhy4vv1rpgx4r1la14symxv3cpz7klqakn1rqdagwyaqp667g9b"; 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}