lol

Merge pull request #151309 from fabaff/sqlalchemy-mixins

python3Packages.sqlalchemy-mixins: init at 1.5.1

authored by

Fabian Affolter and committed by
GitHub
3e219331 49cb707a

+47
+45
pkgs/development/python-modules/sqlalchemy-mixins/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , nose 5 + , pytestCheckHook 6 + , pythonOlder 7 + , six 8 + , sqlalchemy 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "sqlalchemy-mixins"; 13 + version = "1.5.1"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.8"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "absent1706"; 20 + repo = pname; 21 + rev = "v${version}"; 22 + sha256 = "sha256-HZiv7F0/UatgY3KlILgzywrK5NJE/tDe6B8/smeYwlM="; 23 + }; 24 + 25 + propagatedBuildInputs = [ 26 + six 27 + sqlalchemy 28 + ]; 29 + 30 + checkInputs = [ 31 + nose 32 + pytestCheckHook 33 + ]; 34 + 35 + pythonImportsCheck = [ 36 + "sqlalchemy_mixins" 37 + ]; 38 + 39 + meta = with lib; { 40 + description = "Python mixins for SQLAlchemy ORM"; 41 + homepage = "https://github.com/absent1706/sqlalchemy-mixins"; 42 + license = licenses.mit; 43 + maintainers = with maintainers; [ fab ]; 44 + }; 45 + }
+2
pkgs/top-level/python-packages.nix
··· 9121 9121 9122 9122 sqlalchemy-migrate = callPackage ../development/python-modules/sqlalchemy-migrate { }; 9123 9123 9124 + sqlalchemy-mixins = callPackage ../development/python-modules/sqlalchemy-mixins { }; 9125 + 9124 9126 sqlalchemy-utils = callPackage ../development/python-modules/sqlalchemy-utils { }; 9125 9127 9126 9128 sqlitedict = callPackage ../development/python-modules/sqlitedict { };