Merge pull request #142600 from autophagy/init-insegel-1.3.1

authored by

Sandro and committed by
GitHub
5428d0df e575fe69

+29
+27
pkgs/development/python-modules/insegel/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, pygments }: 2 + 3 + buildPythonPackage rec { 4 + pname = "insegel"; 5 + version = "1.3.1"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "1d055dd64f6eb335580a485271511ba2f4e3b5e315f48f827f58da3cace4b4ae"; 10 + }; 11 + 12 + propagatedBuildInputs = [ pygments ]; 13 + 14 + # No tests included 15 + doCheck = false; 16 + 17 + pythonImportsCheck = [ 18 + "insegel" 19 + ]; 20 + 21 + meta = with lib; { 22 + homepage = "https://github.com/autophagy/insegel"; 23 + description = "A monochrome 2 column Sphinx theme"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ autophagy ]; 26 + }; 27 + }
+2
pkgs/top-level/python-packages.nix
··· 3728 3728 3729 3729 inquirer = callPackage ../development/python-modules/inquirer { }; 3730 3730 3731 + insegel = callPackage ../development/python-modules/insegel { }; 3732 + 3731 3733 intake = callPackage ../development/python-modules/intake { }; 3732 3734 3733 3735 intake-parquet = callPackage ../development/python-modules/intake-parquet { };