1{ lib, buildPythonPackage, fetchPypi
2, clikit }:
3
4buildPythonPackage rec {
5 pname = "cleo";
6 version = "0.8.1";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "3d0e22d30117851b45970b6c14aca4ab0b18b1b53c8af57bed13208147e4069f";
11 };
12
13 propagatedBuildInputs = [
14 clikit
15 ];
16
17 # The Pypi tarball doesn't include tests, and the GitHub source isn't
18 # buildable until we bootstrap poetry, see
19 # https://github.com/NixOS/nixpkgs/pull/53599#discussion_r245855665
20 doCheck = false;
21
22 meta = with lib; {
23 homepage = "https://github.com/sdispater/cleo";
24 description = "Allows you to create beautiful and testable command-line interfaces";
25 license = licenses.mit;
26 maintainers = with maintainers; [ jakewaksbaum ];
27 };
28}