pythonPackages.entrypoint2: init at 0.2.1
This commit is contained in:
parent
af2dc4d401
commit
84d74ae9c9
|
@ -0,0 +1,36 @@
|
||||||
|
{ lib, buildPythonPackage, fetchPypi, EasyProcess, pathpy, pytest }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "entrypoint2";
|
||||||
|
version = "0.2.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "15dya04884armqjdyqz1jgachkqgh9dc3p25lvyz9afvg73k2qav";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "entrypoint2" ];
|
||||||
|
|
||||||
|
# argparse is part of the standardlib
|
||||||
|
prePatch = ''
|
||||||
|
substituteInPlace setup.py --replace "argparse" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkInputs = [ EasyProcess pathpy pytest ];
|
||||||
|
|
||||||
|
# 0.2.1 has incompatible pycache files included
|
||||||
|
# https://github.com/ponty/entrypoint2/issues/8
|
||||||
|
checkPhase = ''
|
||||||
|
rm -rf tests/__pycache__
|
||||||
|
pytest tests
|
||||||
|
'';
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1869,6 +1869,8 @@ in {
|
||||||
|
|
||||||
entrance-with-router-features = callPackage ../development/python-modules/entrance { routerFeatures = true; };
|
entrance-with-router-features = callPackage ../development/python-modules/entrance { routerFeatures = true; };
|
||||||
|
|
||||||
|
entrypoint2 = callPackage ../development/python-modules/entrypoint2 { };
|
||||||
|
|
||||||
entrypoints = callPackage ../development/python-modules/entrypoints { };
|
entrypoints = callPackage ../development/python-modules/entrypoints { };
|
||||||
|
|
||||||
enum34 = callPackage ../development/python-modules/enum34 { };
|
enum34 = callPackage ../development/python-modules/enum34 { };
|
||||||
|
|
Loading…
Reference in New Issue