aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/milc/default.nix
blob: adee40650bce651301e287664ef2cd9aa725f1ba (plain)
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
35
36
37
38
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, appdirs
, argcomplete
, colorama
, gnugrep
}:

buildPythonPackage rec {
  pname = "milc";
  version = "1.0.10";

  src = fetchFromGitHub {
    owner = "clueboard";
    repo = "milc";
    rev = version;
    sha256 = "04mk057b6jh0k4maqkg80kpilxak9r7vlr9xqwzczh2gs3g2x573";
  };

  checkInputs = [ gnugrep ];
  propagatedBuildInputs = [ appdirs argcomplete colorama ];

  # Upstream has a nose2 test suite that runs this hello script in a handful of
  # ways, but it's not in setup.py and makes assumptions about relative paths in
  # the src repo, so just sanity-check basic functionality.
  checkPhase = ''
    patchShebangs ./hello
    ./hello | grep "Hello, World"
  '';

  meta = with stdenv.lib; {
    description = "An Opinionated Batteries-Included Python 3 CLI Framework";
    homepage = "https://milc.clueboard.co";
    license = licenses.mit;
    maintainers = with maintainers; [ bhipple ];
  };
}