1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-18 23:50:07 +03:00
nixpkgs/pkgs/development/python-modules/python-sql/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
467 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage }:
2017-02-18 21:00:22 +01:00
buildPythonPackage rec {
pname = "python-sql";
version = "1.3.0";
2020-01-10 12:17:37 -08:00
src = fetchPypi {
inherit pname version;
sha256 = "9d603a6273f2f5966bab7ce77e1f50e88818d5237ac85e566e2dc84ebfabd176";
2017-02-18 21:00:22 +01:00
};
2020-01-10 12:17:37 -08:00
2017-02-18 21:00:22 +01:00
meta = {
homepage = "https://python-sql.tryton.org/";
2017-02-18 21:00:22 +01:00
description = "A library to write SQL queries in a pythonic way";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.bsd3;
};
}