Skip to content

Commit

Permalink
python312Packages.habanero: Drop nose dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrox0 committed Jul 29, 2024
1 parent cc6bdf0 commit c1e2064
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions pkgs/development/python-modules/habanero/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,14 @@
setuptools-scm,
requests,
tqdm,
nose,
vcrpy,
pytestCheckHook,
pythonOlder,
}:

buildPythonPackage rec {
pname = "habanero";
version = "1.2.6";
format = "setuptools";

disabled = pythonOlder "3.7";
pyproject = true;

src = fetchFromGitHub {
owner = "sckott";
Expand All @@ -25,9 +21,9 @@ buildPythonPackage rec {
hash = "sha256-Pw0TgXxDRmR565hdNGipfDZ7P32pxWkmPWfaYK0RaI4=";
};

nativeBuildInputs = [ setuptools-scm ];
build-system = [ setuptools-scm ];

propagatedBuildInputs = [
dependencies = [
requests
tqdm
];
Expand All @@ -42,10 +38,10 @@ buildPythonPackage rec {
# almost the entirety of the test suite makes network calls
pytestFlagsArray = [ "test/test-filters.py" ];

meta = with lib; {
meta = {
description = "Python interface to Library Genesis";
homepage = "https://habanero.readthedocs.io/";
license = licenses.mit;
maintainers = with maintainers; [ nico202 ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nico202 ];
};
}

0 comments on commit c1e2064

Please sign in to comment.