lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.enlighten: init at 1.10.1

+39
+37
pkgs/development/python-modules/enlighten/default.nix
··· 1 + { lib 2 + , stdenv 3 + , buildPythonPackage 4 + , fetchPypi 5 + , blessed 6 + , prefixed 7 + , pytestCheckHook 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "enlighten"; 12 + version = "1.10.1"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + sha256 = "3391916586364aedced5d6926482b48745e4948f822de096d32258ba238ea984"; 17 + }; 18 + 19 + propagatedBuildInputs = [ 20 + blessed 21 + prefixed 22 + ]; 23 + checkInputs = [ pytestCheckHook ]; 24 + 25 + pythonImportsCheck = [ "enlighten" ]; 26 + disabledTests = 27 + # https://github.com/Rockhopper-Technologies/enlighten/issues/44 28 + lib.optional stdenv.isDarwin "test_autorefresh" 29 + ; 30 + 31 + meta = with lib; { 32 + description = "Enlighten Progress Bar for Python Console Apps"; 33 + homepage = "https://github.com/Rockhopper-Technologies/enlighten"; 34 + license = with licenses; [ mpl20 ]; 35 + maintainers = with maintainers; [ veprbl ]; 36 + }; 37 + }
+2
pkgs/top-level/python-packages.nix
··· 2299 2299 2300 2300 enamlx = callPackage ../development/python-modules/enamlx { }; 2301 2301 2302 + enlighten = callPackage ../development/python-modules/enlighten { }; 2303 + 2302 2304 enocean = callPackage ../development/python-modules/enocean { }; 2303 2305 2304 2306 enrich = callPackage ../development/python-modules/enrich { };