mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
31 lines
728 B
Nix
31 lines
728 B
Nix
{ buildPythonPackage
|
|
, colorama
|
|
, fetchPypi
|
|
, isPy27
|
|
, pytestCheckHook
|
|
, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "log_symbols";
|
|
version = "0.0.14";
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0mh5d0igw33libfmbsr1ri1p1y644p36nwaa2w6kzrd8w5pvq2yg";
|
|
};
|
|
|
|
propagatedBuildInputs = [ colorama ];
|
|
|
|
# Tests are not included in the PyPI distribution and the git repo does not have tagged releases
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "log_symbols" ];
|
|
|
|
meta = with lib; {
|
|
description = "Colored Symbols for Various Log Levels.";
|
|
homepage = "https://github.com/manrajgrover/py-log-symbols";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ urbas ];
|
|
};
|
|
}
|