mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #177296 from r-ryantm/auto-update/python310Packages.entrypoint2
python310Packages.entrypoint2: 1.0 -> 1.1
This commit is contained in:
commit
914ef51ffa
@ -1,17 +1,33 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, EasyProcess, path, pytestCheckHook }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, EasyProcess
|
||||
, path
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "entrypoint2";
|
||||
version = "1.0";
|
||||
version = "1.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-Z+kG9q2VjYP0i07ewo192CZw6SYZiPa0prY6vJ+zvlY=";
|
||||
hash = "sha256-/At/57IazatHpYWrlAfKflxPlstoiFddtrDOuR8OEFo=";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "entrypoint2" ];
|
||||
checkInputs = [
|
||||
EasyProcess
|
||||
path
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
checkInputs = [ EasyProcess path pytestCheckHook ];
|
||||
pythonImportsCheck = [
|
||||
"entrypoint2"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Easy to use command-line interface for python modules";
|
||||
|
Loading…
Reference in New Issue
Block a user