Merge pull request #117860 from AndersonTorres/new-ronin
pythonPackages.ronin: init at 1.1.1
This commit is contained in:
commit
91aa2b2dce
34
pkgs/development/python-modules/ronin/default.nix
Normal file
34
pkgs/development/python-modules/ronin/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, blessings
|
||||
, colorama
|
||||
, glob2
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ronin";
|
||||
version = "1.1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version pname;
|
||||
hash = "sha256-5gZ8S0NR4JzKBIdi/xYtVmFg9ObbCSkT7sz+OKWnK/U=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
blessings
|
||||
colorama
|
||||
glob2
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"ronin"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/tliron/ronin/";
|
||||
description = "A straightforward but powerful build system based on Ninja and Python";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ AndersonTorres ];
|
||||
};
|
||||
}
|
@ -7347,6 +7347,8 @@ in {
|
||||
|
||||
roombapy = callPackage ../development/python-modules/roombapy { };
|
||||
|
||||
ronin = callPackage ../development/python-modules/ronin { };
|
||||
|
||||
rope = callPackage ../development/python-modules/rope { };
|
||||
|
||||
ROPGadget = callPackage ../development/python-modules/ROPGadget { };
|
||||
|
Loading…
Reference in New Issue
Block a user