1{ lib, buildPythonPackage, fetchPypi
2, pylev, pastel, clikit }:
3
4buildPythonPackage rec {
5 pname = "cleo";
6 version = "0.7.6";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "99cf342406f3499cec43270fcfaf93c126c5164092eca201dfef0f623360b409";
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}