evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / clint / default.nix
blob87bc6568c58736c43e4a25c56e15b2efcbdf1d38
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   pytestCheckHook,
7   args,
8 }:
10 buildPythonPackage rec {
11   pname = "clint";
12   version = "0.5.1";
13   pyproject = true;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-BSJMMrEHVWPQsW0AFfqvnaQ6ohTkohQOUfCHieekxao=";
18   };
20   build-system = [ setuptools ];
22   dependencies = [ args ];
24   nativeCheckInputs = [ pytestCheckHook ];
26   pythonImportsCheck = [ "clint" ];
28   meta = with lib; {
29     homepage = "https://github.com/kennethreitz/clint";
30     description = "Python Command Line Interface Tools";
31     license = licenses.isc;
32     maintainers = with maintainers; [ domenkozar ];
33   };