fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
48 lines
923 B
Nix
48 lines
923 B
Nix
{
|
|
lib,
|
|
pythonOlder,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pkutils,
|
|
# Check Inputs
|
|
nose,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pygogo";
|
|
version = "0.13.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "reubano";
|
|
repo = "pygogo";
|
|
rev = "v${version}";
|
|
sha256 = "19rdf4sjrm5lp1vq1bki21a9lrkzz8sgrfwgjdkq4sgy90hn1jn9";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkutils ];
|
|
|
|
nativeCheckInputs = [ nose ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace dev-requirements.txt \
|
|
--replace "pkutils>=1.0.0,<2.0.0" "pkutils>=1.0.0"
|
|
'';
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
nosetests
|
|
runHook postCheck
|
|
'';
|
|
|
|
pythonImportsCheck = [ "pygogo" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python logging library";
|
|
homepage = "https://github.com/reubano/pygogo/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ drewrisinger ];
|
|
};
|
|
}
|