Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 blessings, 6 colorama, 7 glob2, 8}: 9 10buildPythonPackage rec { 11 pname = "ronin"; 12 version = "1.1.1"; 13 format = "setuptools"; 14 15 src = fetchPypi { 16 inherit version pname; 17 hash = "sha256-5gZ8S0NR4JzKBIdi/xYtVmFg9ObbCSkT7sz+OKWnK/U="; 18 }; 19 20 propagatedBuildInputs = [ 21 blessings 22 colorama 23 glob2 24 ]; 25 26 pythonImportsCheck = [ "ronin" ]; 27 28 meta = with lib; { 29 homepage = "https://github.com/tliron/ronin/"; 30 description = "Straightforward but powerful build system based on Ninja and Python"; 31 license = licenses.asl20; 32 maintainers = with maintainers; [ AndersonTorres ]; 33 }; 34}