about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sqlsoup/default.nix
blob: d75621cc6345cb5be6f6e0e0c9a4feaf84fc9b04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ buildPythonPackage, fetchPypi, lib, sqlalchemy, nose }:

buildPythonPackage rec {
  pname = "sqlsoup";
  version = "0.9.1";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1mj00fhxj75ac3i8xk9jmm7hvcjz9p4x2r3yndcwsgb659rvgbrg";
  };

  propagatedBuildInputs = [ sqlalchemy ];
  nativeCheckInputs = [ nose ];

  meta = with lib; {
    description = "A one step database access tool, built on the SQLAlchemy ORM";
    homepage = "https://github.com/zzzeek/sqlsoup";
    license = licenses.mit;
    maintainers = [];
    broken = true; # incompatible with sqlalchemy>=1.4 and unmaintained since 2016
  };
}