emacsPackages.lsp-bridge: 0-unstable-2025-01-11 -> 0-unstable-2025-01-22 (#376531)
[NixPkgs.git] / pkgs / development / python-modules / dataset / default.nix
blob778082fc276f72d6220b348de29d05ef1d26c7f7
2   lib,
3   alembic,
4   banal,
5   buildPythonPackage,
6   fetchPypi,
7   pythonOlder,
8   sqlalchemy,
9 }:
11 buildPythonPackage rec {
12   pname = "dataset";
13   version = "1.6.2";
14   format = "setuptools";
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-d9NiEY9nqMu0hI29MKs2K5+nz+vb+vQmycUAyziWmpk=";
21   };
23   propagatedBuildInputs = [
24     alembic
25     banal
26     sqlalchemy
27   ];
29   # checks attempt to import nonexistent module 'test.test' and fail
30   doCheck = false;
32   pythonImportsCheck = [ "dataset" ];
34   meta = with lib; {
35     description = "Toolkit for Python-based database access";
36     homepage = "https://dataset.readthedocs.io";
37     license = licenses.mit;
38     maintainers = with maintainers; [ xfnw ];
39     # SQLAlchemy >= 2.0.0 is unsupported
40     # https://github.com/pudo/dataset/issues/411
41     broken = true;
42   };