nixpkgs/pkgs/development/python-modules/clikit/default.nix

30 lines
833 B
Nix
Raw Normal View History

2019-01-07 17:06:48 +00:00
{ lib, buildPythonPackage, fetchPypi
2020-05-04 19:32:01 +01:00
, isPy27
2019-01-07 17:06:48 +00:00
, pylev, pastel, typing, enum34 }:
buildPythonPackage rec {
pname = "clikit";
2020-03-26 00:01:29 +00:00
version = "0.4.3";
2019-01-07 17:06:48 +00:00
src = fetchPypi {
inherit pname version;
2020-03-26 00:01:29 +00:00
sha256 = "0glppxx0pyppjcigzs8h16srlbxb6nci0282xfy3ayvwbq8pwbbf";
2019-01-07 17:06:48 +00:00
};
propagatedBuildInputs = [
pylev pastel
2020-05-04 19:32:01 +01:00
] ++ lib.optionals isPy27 [ typing enum34 ];
2019-01-07 17:06:48 +00:00
# The Pypi tarball doesn't include tests, and the GitHub source isn't
# buildable until we bootstrap poetry, see
# https://github.com/NixOS/nixpkgs/pull/53599#discussion_r245855665
doCheck = false;
meta = with lib; {
homepage = "https://github.com/sdispater/clikit";
2019-01-07 17:06:48 +00:00
description = "A group of utilities to build beautiful and testable command line interfaces";
license = licenses.mit;
maintainers = with maintainers; [ jakewaksbaum ];
};
}