mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
python310Packages.doit-py: init at 0.5.0
This commit is contained in:
parent
43f1105679
commit
72c7711a64
2 changed files with 50 additions and 0 deletions
48
pkgs/development/python-modules/doit-py/default.nix
Normal file
48
pkgs/development/python-modules/doit-py/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue