evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / mando / default.nix
blobd6b8055a730c157c82aad3f552a85a8cf8a4d3a3
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6   # Python deps
7   six,
8   setuptools,
9 }:
11 buildPythonPackage rec {
12   pname = "mando";
13   version = "0.8.2";
15   pyproject = true;
17   src = fetchFromGitHub {
18     owner = "rubik";
19     repo = "mando";
20     rev = "v${version}";
21     hash = "sha256-FuQZ53ojrQO++0TN0C3hk0LXH+mcfRqtGq8VvfYDufg=";
22   };
24   nativeBuildInputs = [ setuptools ];
26   nativeCheckInputs = [ pytestCheckHook ];
28   propagatedBuildInputs = [ six ];
30   pythonImportsCheck = [ "mando" ];
32   meta = with lib; {
33     description = "Create Python CLI apps with little to no effort at all";
34     homepage = "https://mando.readthedocs.org";
35     changelog = "https://github.com/rubik/mando/blob/v${version}/CHANGELOG";
36     license = licenses.mit;
37     maintainers = with maintainers; [ t4ccer ];
38   };