about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ronin/default.nix
blob: 7de9b522aa6470b7674ef8fb90553a8d07bfe8c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  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 = "A straightforward but powerful build system based on Ninja and Python";
    license = licenses.asl20;
    maintainers = with maintainers; [ AndersonTorres ];
  };
}