Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sqlsoup / default.nix
blobd75621cc6345cb5be6f6e0e0c9a4feaf84fc9b04
1 { buildPythonPackage, fetchPypi, lib, sqlalchemy, nose }:
3 buildPythonPackage rec {
4   pname = "sqlsoup";
5   version = "0.9.1";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "1mj00fhxj75ac3i8xk9jmm7hvcjz9p4x2r3yndcwsgb659rvgbrg";
11   };
13   propagatedBuildInputs = [ sqlalchemy ];
14   nativeCheckInputs = [ nose ];
16   meta = with lib; {
17     description = "A one step database access tool, built on the SQLAlchemy ORM";
18     homepage = "https://github.com/zzzeek/sqlsoup";
19     license = licenses.mit;
20     maintainers = [];
21     broken = true; # incompatible with sqlalchemy>=1.4 and unmaintained since 2016
22   };