summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-sql
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-06-20 12:01:25 +0000
committerGitHub <noreply@github.com>2023-06-20 12:01:25 +0000
commit18addf668c240178cb667377222f9fcdaaf2b3ac (patch)
treeefff3d88ae3614b650aff37d593fbe424742593a /pkgs/development/python-modules/python-sql
parentba63f8c90f6aa8eadc819a98ca2b4d58c8f3aba1 (diff)
parent50847470ba43e608d4b77c406ca26313229a49a0 (diff)
Merge master into staging-next
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 ];
};