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

51 lines
967 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools-scm,
requests,
tqdm,
nose,
vcrpy,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "habanero";
version = "1.2.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "sckott";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-Pw0TgXxDRmR565hdNGipfDZ7P32pxWkmPWfaYK0RaI4=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
requests
tqdm
];
nativeCheckInputs = [
pytestCheckHook
vcrpy
];
pythonImportsCheck = [ "habanero" ];
# almost the entirety of the test suite makes network calls
pytestFlagsArray = [ "test/test-filters.py" ];
meta = with lib; {
description = "Python interface to Library Genesis";
homepage = "https://habanero.readthedocs.io/";
license = licenses.mit;
maintainers = with maintainers; [ nico202 ];
};
}