My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/entrypoint2/default.nix

22 lines
608 B

{ 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 ];
};
}