summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-sql
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-20 14:08:37 +0300
committerGitHub <noreply@github.com>2023-06-20 14:08:37 +0300
commit86d65e86e687993b72ceae3aa28e4a6ccbdd4011 (patch)
tree33b55afd43909368e2ae7db2d91f22a7d99a0c98 /pkgs/development/python-modules/python-sql
parentc1b2b245c28abe7ee4f8e82d221d012d412de2a1 (diff)
parentbd507fd64825c9428fc33ea44a7a8ea28e93f4aa (diff)
Merge pull request #238672 from r-ryantm/auto-update/python310Packages.python-sql
python310Packages.python-sql: 1.4.0 -> 1.4.1
Diffstat (limited to 'pkgs/development/python-modules/python-sql')
-rw-r--r--pkgs/development/python-modules/python-sql/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/python-sql/default.nix b/pkgs/development/python-modules/python-sql/default.nix
index 58a5cd625fc4..783f7654d49e 100644
--- a/pkgs/development/python-modules/python-sql/default.nix
+++ b/pkgs/development/python-modules/python-sql/default.nix
@@ -7,14 +7,14 @@
buildPythonPackage rec {
pname = "python-sql";
- version = "1.4.0";
+ version = "1.4.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-b+dkCC9IiR2Ffqfm+kJfpU8TUx3fa4nyTAmOZGrRtLY=";
+ hash = "sha256-KkcvQLQPlFmdBi6/92BHm2NTX2LQLrnH1nGR4Iq/ctw=";
};
nativeCheckInputs = [
@@ -27,7 +27,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Library to write SQL queries in a pythonic way";
- homepage = "https://pypi.org/project/python-sql/";
+ homepage = "https://foss.heptapod.net/tryton/python-sql";
+ changelog = "https://foss.heptapod.net/tryton/python-sql/-/blob/${version}/CHANGELOG";
license = licenses.bsd3;
maintainers = with maintainers; [ johbo ];
};