Merge pull request #171287 from r-ryantm/auto-update/python310Packages.ghp-import

python310Packages.ghp-import: 2.0.2 -> 2.1.0
This commit is contained in:
Fabian Affolter 2022-05-02 20:55:26 +02:00 committed by GitHub
commit 60630da33c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,23 +2,31 @@
, buildPythonPackage
, fetchPypi
, python-dateutil
, pythonOlder
}:
buildPythonPackage rec {
pname = "ghp-import";
version = "2.0.2";
version = "2.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-lHs3cfEb6FDIUsZLVhxgD93feUurNjBghUwe560F4HE=";
hash = "sha256-nFNcTGEZPC34hxIiVn1/1+UBTYNfl9x7dDkGniQT00M=";
};
propagatedBuildInputs = [ python-dateutil ];
propagatedBuildInputs = [
python-dateutil
];
# Does not include any unit tests
doCheck = false;
pythonImportsCheck = [ "ghp_import" ];
pythonImportsCheck = [
"ghp_import"
];
meta = with lib; {
description = "Copy your docs directly to the gh-pages branch";