mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
35 lines
654 B
Nix
35 lines
654 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
blessings,
|
|
colorama,
|
|
glob2,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ronin";
|
|
version = "1.1.1";
|
|
format = "setuptools";
|
|
|
|
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 = "Straightforward but powerful build system based on Ninja and Python";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
};
|
|
}
|