depot/third_party/nixpkgs/pkgs/development/python-modules/luddite/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

47 lines
1,015 B
Nix

{
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 ];
};
}