python310Packages.autocommand: init at 2.2.1

This commit is contained in:
Sandro Jäckel
2022-09-19 10:37:48 +02:00
committed by Martin Weinelt
parent fe1ecd204f
commit d79ea2dde3
2 changed files with 33 additions and 0 deletions
@@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "autocommand";
version = "2.2.1";
src = fetchFromGitHub {
owner = "Lucretiel";
repo = "autocommand";
rev = version;
sha256 = "sha256-bjoVGfP57qhvPuHHcMP8JQddAaW4/fEyatElk1UEPZo=";
};
# fails with: SyntaxError: invalid syntax
doCheck = false;
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "autocommand" ];
meta = with lib; {
description = " Autocommand turns a python function into a CLI program ";
homepage = "https://github.com/Lucretiel/autocommand";
license = licenses.lgpl3;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}
+2
View File
@@ -885,6 +885,8 @@ in {
autobahn = callPackage ../development/python-modules/autobahn { };
autocommand = callPackage ../development/python-modules/autocommand { };
autograd = callPackage ../development/python-modules/autograd { };
autoit-ripper = callPackage ../development/python-modules/autoit-ripper { };