about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/ronin/default.nix
blob: c9b0a0d25617fc017e6fd79bfa323a6dcf5b5893 (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";

  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 ];
  };
}