1{ stdenv, buildPythonPackage, fetchPypi, pyyaml }:
2
3buildPythonPackage rec {
4 pname = "cmdline";
5 version = "0.1.8";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "324cc8fc6580f221824821c47232c297ed1f7cc737186a57305a8c08fc902dd7";
10 };
11
12 # No tests, https://github.com/rca/cmdline/issues/1
13 doCheck = false;
14 propagatedBuildInputs = [ pyyaml ];
15
16 meta = with stdenv.lib; {
17 description = "Utilities for consistent command line tools";
18 homepage = https://github.com/rca/cmdline;
19 license = licenses.asl20;
20 };
21}