Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 21 lines 573 B view raw
1{ stdenv, fetchFromGitHub, buildPythonPackage, pyparsing, six, urwid }: 2 3buildPythonPackage rec { 4 pname = "configshell"; 5 version = "1.1.27"; 6 7 src = fetchFromGitHub { 8 owner = "open-iscsi"; 9 repo ="${pname}-fb"; 10 rev = "v${version}"; 11 sha256 = "1nldzq3097xqgzd8qxv36ydvx6vj2crwanihz53k46is0myrwcnn"; 12 }; 13 14 propagatedBuildInputs = [ pyparsing six urwid ]; 15 16 meta = with stdenv.lib; { 17 description = "A Python library for building configuration shells"; 18 homepage = https://github.com/open-iscsi/configshell-fb; 19 license = licenses.asl20; 20 }; 21}