lol

python310Packages.autocommand: init at 2.2.1

authored by

Sandro Jäckel and committed by
Martin Weinelt
d79ea2dd fe1ecd20

+33
+31
pkgs/development/python-modules/autocommand/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "autocommand"; 9 + version = "2.2.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "Lucretiel"; 13 + repo = "autocommand"; 14 + rev = version; 15 + sha256 = "sha256-bjoVGfP57qhvPuHHcMP8JQddAaW4/fEyatElk1UEPZo="; 16 + }; 17 + 18 + # fails with: SyntaxError: invalid syntax 19 + doCheck = false; 20 + 21 + checkInputs = [ pytestCheckHook ]; 22 + 23 + pythonImportsCheck = [ "autocommand" ]; 24 + 25 + meta = with lib; { 26 + description = " Autocommand turns a python function into a CLI program "; 27 + homepage = "https://github.com/Lucretiel/autocommand"; 28 + license = licenses.lgpl3; 29 + maintainers = with maintainers; [ SuperSandro2000 ]; 30 + }; 31 + }
+2
pkgs/top-level/python-packages.nix
··· 885 885 886 886 autobahn = callPackage ../development/python-modules/autobahn { }; 887 887 888 + autocommand = callPackage ../development/python-modules/autocommand { }; 889 + 888 890 autograd = callPackage ../development/python-modules/autograd { }; 889 891 890 892 autoit-ripper = callPackage ../development/python-modules/autoit-ripper { };