evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / entrypoint2 / default.nix
blob2e6ecc1a0bbd624adf434dc5f58f52b3c32ed4a8
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   easyprocess,
6   path,
7   pytestCheckHook,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "entrypoint2";
13   version = "1.1";
14   format = "setuptools";
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-/At/57IazatHpYWrlAfKflxPlstoiFddtrDOuR8OEFo=";
21   };
23   nativeCheckInputs = [
24     easyprocess
25     path
26     pytestCheckHook
27   ];
29   pythonImportsCheck = [ "entrypoint2" ];
31   meta = with lib; {
32     description = "Easy to use command-line interface for python modules";
33     homepage = "https://github.com/ponty/entrypoint2/";
34     license = licenses.bsd2;
35     maintainers = with maintainers; [ austinbutler ];
36   };