b899fd6a18
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-python-sql/versions
17 lines
450 B
Nix
17 lines
450 B
Nix
{ lib, fetchPypi, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-sql";
|
|
version = "1.0.0";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "05ni936y0ia9xmryl7mlhbj9i80nnvq1bi4zxhb96rv7yvpb3fqb";
|
|
};
|
|
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;
|
|
};
|
|
}
|