summary refs log tree commit diff
path: root/pkgs/development/python-modules/cmdline/default.nix
blob: 1f8d913aa2a8d85b6f105ac18d83da7707a802be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildPythonPackage, fetchPypi, pyyaml }:

buildPythonPackage rec {
  pname = "cmdline";
  version = "0.1.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "324cc8fc6580f221824821c47232c297ed1f7cc737186a57305a8c08fc902dd7";
  };

  # No tests, https://github.com/rca/cmdline/issues/1
  doCheck = false;
  propagatedBuildInputs = [ pyyaml ];

  meta = with stdenv.lib; {
    description = "Utilities for consistent command line tools";
    homepage = https://github.com/rca/cmdline;
    license = licenses.asl20;
  };
}