summary refs log tree commit diff
path: root/pkgs/development/python-modules/entrypoint2/default.nix
blob: 4fd464d483f3913d1bb5a88d7d7a40a2ad9e2add (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, fetchPypi, EasyProcess, path, pytestCheckHook }:

buildPythonPackage rec {
  pname = "entrypoint2";
  version = "1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-Z+kG9q2VjYP0i07ewo192CZw6SYZiPa0prY6vJ+zvlY=";
  };

  pythonImportsCheck = [ "entrypoint2" ];

  checkInputs = [ EasyProcess path pytestCheckHook ];

  meta = with lib; {
    description = "Easy to use command-line interface for python modules";
    homepage = "https://github.com/ponty/entrypoint2/";
    license = licenses.bsd2;
    maintainers = with maintainers; [ austinbutler ];
  };
}