ghp-import: 0.5.5 -> 1.1.0 (#120794)
This commit is contained in:
29
pkgs/development/python-modules/ghp-import/default.nix
Normal file
29
pkgs/development/python-modules/ghp-import/default.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ghp-import";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-wiqc4Qw3dT4miNFk12WnANrkuNefptsKLDEyuniBiU8=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil ];
|
||||
|
||||
# Does not include any unit tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "ghp_import" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Copy your docs directly to the gh-pages branch";
|
||||
homepage = "https://github.com/c-w/ghp-import";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ veehaitch ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user