Unverified Commit 812887a7 authored by t4ccer's avatar t4ccer
Browse files

python3Packages.mando: init at 0.7.1

parent 33b800cb
Loading
Loading
Loading
Loading
+46 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
# Python deps
, six
, setuptools
}:

buildPythonPackage rec {
  pname = "mando";
  version = "0.7.1";

  pyproject = true;

  src = fetchFromGitHub {
    owner = "rubik";
    repo = "mando";
    rev = "v${version}";
    hash = "sha256-Ylrrfo57jqGuWEqCa5RyTT9AagBpUvAfviHkyJPFv08=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  propagatedBuildInputs = [
    six
  ];

  pythonImportsCheck = [
    "mando"
  ];

  meta = with lib; {
    description = "Create Python CLI apps with little to no effort at all";
    homepage = "https://mando.readthedocs.org";
    changelog = "https://github.com/rubik/mando/blob/v${version}/CHANGELOG";
    license = licenses.mit;
    maintainers = with maintainers; [ t4ccer ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -6477,6 +6477,8 @@ self: super: with self; {
  managesieve = callPackage ../development/python-modules/managesieve { };
  mando = callPackage ../development/python-modules/mando { };
  mandown = callPackage ../development/python-modules/mandown { };
  manhole = callPackage ../development/python-modules/manhole { };