depot/third_party/nixpkgs/pkgs/development/python-modules/luddite/default.nix

48 lines
1,015 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
packaging,
pytestCheckHook,
pytest-mock,
}:
buildPythonPackage rec {
pname = "luddite";
version = "1.0.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "jumptrading";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-iJ3h1XRBzLd4cBKFPNOlIV5Z5XJ/miscfIdkpPIpbJ8=";
};
postPatch = ''
substituteInPlace pytest.ini \
--replace "--cov=luddite --cov-report=html --cov-report=term --no-cov-on-fail" "" \
--replace "--disable-socket" ""
'';
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ packaging ];
pythonImportsCheck = [ "luddite" ];
nativeCheckInputs = [
pytestCheckHook
pytest-mock
];
meta = with lib; {
description = "Checks for out-of-date package versions";
mainProgram = "luddite";
homepage = "https://github.com/jumptrading/luddite";
license = licenses.asl20;
maintainers = with maintainers; [ emilytrau ];
};
}