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