Merge pull request #151309 from fabaff/sqlalchemy-mixins

python3Packages.sqlalchemy-mixins: init at 1.5.1
This commit is contained in:
Fabian Affolter 2021-12-20 08:03:24 +01:00 committed by GitHub
commit 3e21933157
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, nose
, pytestCheckHook
, pythonOlder
, six
, sqlalchemy
}:
buildPythonPackage rec {
pname = "sqlalchemy-mixins";
version = "1.5.1";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "absent1706";
repo = pname;
rev = "v${version}";
sha256 = "sha256-HZiv7F0/UatgY3KlILgzywrK5NJE/tDe6B8/smeYwlM=";
};
propagatedBuildInputs = [
six
sqlalchemy
];
checkInputs = [
nose
pytestCheckHook
];
pythonImportsCheck = [
"sqlalchemy_mixins"
];
meta = with lib; {
description = "Python mixins for SQLAlchemy ORM";
homepage = "https://github.com/absent1706/sqlalchemy-mixins";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -9121,6 +9121,8 @@ in {
sqlalchemy-migrate = callPackage ../development/python-modules/sqlalchemy-migrate { };
sqlalchemy-mixins = callPackage ../development/python-modules/sqlalchemy-mixins { };
sqlalchemy-utils = callPackage ../development/python-modules/sqlalchemy-utils { };
sqlitedict = callPackage ../development/python-modules/sqlitedict { };