Skip to content

Commit

Permalink
Merge pull request #330493 from Sigmanificient/sqlachemy-mixins
Browse files Browse the repository at this point in the history
python312Packages.sqlalchemy-mixins: drop nose dependency
  • Loading branch information
emilazy committed Jul 28, 2024
2 parents bd54356 + 4f3b164 commit 82ecf9f
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions pkgs/development/python-modules/sqlalchemy-mixins/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
lib,
buildPythonPackage,
fetchFromGitHub,
nose,
pytestCheckHook,
setuptools,
pythonOlder,
six,
sqlalchemy,
pytestCheckHook,
}:

buildPythonPackage rec {
pname = "sqlalchemy-mixins";
version = "2.0.5";
format = "setuptools";
pyproject = true;

disabled = pythonOlder "3.8";

Expand All @@ -23,15 +23,14 @@ buildPythonPackage rec {
hash = "sha256-iJrRlV/M0Z1IOdrwWSblefm6wjvdk4/v0am+It8VeWI=";
};

propagatedBuildInputs = [
build-system = [ setuptools ];

dependencies = [
six
sqlalchemy
];

nativeCheckInputs = [
nose
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];

pythonImportsCheck = [ "sqlalchemy_mixins" ];

Expand Down

0 comments on commit 82ecf9f

Please sign in to comment.