30 lines
612 B
Nix
30 lines
612 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|