1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-23 01:41:05 +03:00

python-sql: init at 0.8

This commit is contained in:
Johannes Bornhold 2017-02-18 21:00:22 +01:00
parent db95097674
commit a2dd4ea7d1
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ lib, fetchurl, buildPythonPackage }:
buildPythonPackage rec {
name = "python-sql-${version}";
version = "0.8";
src = fetchurl {
url = "mirror://pypi/p/python-sql/${name}.tar.gz";
sha256 = "0xik939sxqfqqbpgcsnfjnws692bjip32khgwhq1ycphfy7df3h2";
};
meta = {
homepage = http://python-sql.tryton.org/;
description = "A library to write SQL queries in a pythonic way";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.bsd3;
};
}