python3Packages.pydriller: init at 2.9
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
pytestCheckHook,
|
||||
|
||||
# dependencies
|
||||
gitpython,
|
||||
pytz,
|
||||
types-pytz,
|
||||
lizard,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pydriller";
|
||||
version = "2.9";
|
||||
pyproject = true;
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ishepard";
|
||||
repo = "pydriller";
|
||||
tag = version;
|
||||
hash = "sha256-Al81olowYgN/8xIh6ForQHibgy4qy5ivh7YJGm+lGIE=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
gitpython
|
||||
pytz
|
||||
types-pytz
|
||||
lizard
|
||||
];
|
||||
|
||||
# require internet access
|
||||
doChecks = false;
|
||||
|
||||
pythonImportsCheck = [ "pydriller" ];
|
||||
|
||||
meta = {
|
||||
description = "Python Framework to analyse Git repositories";
|
||||
homepage = "https://pydriller.readthedocs.io/en/latest/";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ felbinger ];
|
||||
};
|
||||
}
|
||||
@@ -13855,6 +13855,8 @@ self: super: with self; {
|
||||
|
||||
pydrawise = callPackage ../development/python-modules/pydrawise { };
|
||||
|
||||
pydriller = callPackage ../development/python-modules/pydriller { };
|
||||
|
||||
pydrive2 = callPackage ../development/python-modules/pydrive2 { };
|
||||
|
||||
pydroid-ipcam = callPackage ../development/python-modules/pydroid-ipcam { };
|
||||
|
||||
Reference in New Issue
Block a user