python310Packages.ghp-import: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-05-02 19:23:41 +02:00 committed by GitHub
parent d515e11799
commit 01048fa37c
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.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
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";