1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-24 10:10:37 +03:00

python.pkgs wide: fix problematic urls

This commit is contained in:
Jonathan Ringer 2020-01-10 12:17:37 -08:00 committed by Jon
parent 4f2de85ac1
commit 5961f211f3
28 changed files with 34 additions and 29 deletions

View file

@ -3,12 +3,14 @@
buildPythonPackage rec {
pname = "python-sql";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "05ni936y0ia9xmryl7mlhbj9i80nnvq1bi4zxhb96rv7yvpb3fqb";
};
meta = {
homepage = http://python-sql.tryton.org/;
homepage = https://python-sql.tryton.org/;
description = "A library to write SQL queries in a pythonic way";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.bsd3;