nixpkgs/pkgs/development/python-modules/pygogo/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

54 lines
933 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 ];
};
}