python310Packages.doit-py: init at 0.5.0

This commit is contained in:
Jonas Heinrich 2022-07-27 16:46:03 +02:00 committed by Yt
parent 43f1105679
commit 72c7711a64
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{ lib
, fetchFromGitHub
, buildPythonPackage
, doit
, configclass
, mergedict
, pytestCheckHook
, hunspell
, hunspellDicts
}:
buildPythonPackage rec {
pname = "doit-py";
version = "0.5.0";
src = fetchFromGitHub {
owner = "pydoit";
repo = pname;
rev = version;
sha256 = "sha256-DBl6/no04ZGRHHmN9gkEtBmAMgmyZWcfPCcFz0uxAv4=";
};
propagatedBuildInputs = [
configclass
doit
mergedict
];
checkInputs = [
hunspell
hunspellDicts.en_US
pytestCheckHook
];
disabledTestPaths = [
# Disable linting checks
"tests/test_pyflakes.py"
];
pythonImportsCheck = [ "doitpy" ];
meta = with lib; {
description = "doit tasks for python stuff";
homepage = "http://pythonhosted.org/doit-py";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
};
}

View file

@ -2647,6 +2647,8 @@ in {
doit = callPackage ../development/python-modules/doit { };
doit-py = callPackage ../development/python-modules/doit-py { };
dominate = callPackage ../development/python-modules/dominate { };
doorbirdpy = callPackage ../development/python-modules/doorbirdpy { };