at 23.05-pre 629 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, blessings 5, colorama 6, glob2 7}: 8 9buildPythonPackage rec { 10 pname = "ronin"; 11 version = "1.1.1"; 12 13 src = fetchPypi { 14 inherit version pname; 15 hash = "sha256-5gZ8S0NR4JzKBIdi/xYtVmFg9ObbCSkT7sz+OKWnK/U="; 16 }; 17 18 propagatedBuildInputs = [ 19 blessings 20 colorama 21 glob2 22 ]; 23 24 pythonImportsCheck = [ 25 "ronin" 26 ]; 27 28 meta = with lib; { 29 homepage = "https://github.com/tliron/ronin/"; 30 description = "A straightforward but powerful build system based on Ninja and Python"; 31 license = licenses.asl20; 32 maintainers = with maintainers; [ AndersonTorres ]; 33 }; 34}