Skip to content

Commit

Permalink
sqlite-utils: 3.26 -> 3.26.1
Browse files Browse the repository at this point in the history
  • Loading branch information
techknowlogick committed May 5, 2022
1 parent 494ad97 commit 23c4e4a
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pkgs/development/python-modules/sqlite-utils/default.nix
Expand Up @@ -14,16 +14,21 @@

buildPythonPackage rec {
pname = "sqlite-utils";
version = "3.26";
version = "3.26.1";
format = "setuptools";

disabled = pythonOlder "3.6";

src = fetchPypi {
inherit pname version;
hash = "sha256-G2Fy9PEYtq0dIWhsgV4HZa5y+wLxcI3CYSgDL6ijkdo=";
hash = "sha256-GK/036zijOSi9IWZSFifXrexY8dyo6cfwWyaF06x82c=";
};

postPatch = ''
substituteInPlace setup.py \
--replace "click-default-group-wheel" "click-default-group"
'';

propagatedBuildInputs = [
click
click-default-group
Expand All @@ -45,6 +50,6 @@ buildPythonPackage rec {
description = "Python CLI utility and library for manipulating SQLite databases";
homepage = "https://github.com/simonw/sqlite-utils";
license = licenses.asl20;
maintainers = with maintainers; [ meatcar ];
maintainers = with maintainers; [ meatcar techknowlogick ];
};
}

0 comments on commit 23c4e4a

Please sign in to comment.