python3Packages.pygogo: init at 0.13.2

This commit is contained in:
Drew Risinger 2020-07-01 22:53:09 -04:00 committed by Jon
parent c8e496ecc5
commit 7e8d919787
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, pythonOlder
, buildPythonPackage
, fetchFromGitHub
, pkutils
# Check Inputs
, pytestCheckHook
, nose
}:
buildPythonPackage rec {
pname = "pygogo";
version = "0.13.2";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "reubano";
repo = "pygogo";
rev = "v${version}";
sha256 = "19rdf4sjrm5lp1vq1bki21a9lrkzz8sgrfwgjdkq4sgy90hn1jn9";
};
nativeBuildInputs = [ pkutils ];
checkInputs = [ nose ];
checkPhase = "nosetests";
pythonImportsCheck = [ "pygogo" ];
meta = with lib; {
description = "A Python logging library with super powers";
homepage = "https://github.com/reubano/pygogo/";
license = licenses.mit;
maintainers = with maintainers; [ drewrisinger ];
};
}

View file

@ -4787,6 +4787,8 @@ in {
pygal = callPackage ../development/python-modules/pygal { };
pygogo = callPackage ../development/python-modules/pygogo { };
pytaglib = callPackage ../development/python-modules/pytaglib { };
pyte = callPackage ../development/python-modules/pyte { };