python3Packages.habanero: add pythonImportsCheck

This commit is contained in:
Fabian Affolter 2022-03-28 11:59:43 +02:00 committed by GitHub
parent bb18719b6d
commit 7963f78ba7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,26 +1,31 @@
{ buildPythonPackage, lib, fetchFromGitHub
, requests, tqdm
, nose, vcrpy
{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
, tqdm
, nose
, vcrpy
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "habanero";
version = "1.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
# Install from Pypi is failing because of a missing file (Changelog.rst)
src = fetchFromGitHub {
owner = "sckott";
repo = pname;
rev = "v${version}";
sha256 = "sha256-jxaO8nCR5jhXCPjhjVLKaGeQp9JF3ECQ1+j3TOJKawg=";
hash = "sha256-jxaO8nCR5jhXCPjhjVLKaGeQp9JF3ECQ1+j3TOJKawg=";
};
propagatedBuildInputs = [ requests tqdm ];
# almost the entirety of the test suite makes network calls
pytestFlagsArray = [
"test/test-filters.py"
propagatedBuildInputs = [
requests
tqdm
];
checkInputs = [
@ -28,10 +33,19 @@ buildPythonPackage rec {
vcrpy
];
meta = {
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/en/latest/";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.nico202 ];
homepage = "https://habanero.readthedocs.io/";
license = licenses.mit;
maintainers = with maintainers; [ nico202 ];
};
}