mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 23:36:39 +01:00
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
click,
|
|
click-default-group,
|
|
python-dateutil,
|
|
sqlite-fts4,
|
|
tabulate,
|
|
pluggy,
|
|
pytestCheckHook,
|
|
hypothesis,
|
|
testers,
|
|
sqlite-utils,
|
|
setuptools,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "sqlite-utils";
|
|
version = "3.38";
|
|
pyproject = true;
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "sqlite_utils";
|
|
hash = "sha256-Gud7kxOEBSIFoVR41ClGT2xno6w7Tq/TxnSskA9iOqs=";
|
|
};
|
|
|
|
dependencies = [
|
|
click
|
|
click-default-group
|
|
python-dateutil
|
|
sqlite-fts4
|
|
tabulate
|
|
pluggy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
hypothesis
|
|
];
|
|
|
|
pythonImportsCheck = [ "sqlite_utils" ];
|
|
|
|
passthru.tests.version = testers.testVersion { package = sqlite-utils; };
|
|
|
|
meta = {
|
|
description = "Python CLI utility and library for manipulating SQLite databases";
|
|
mainProgram = "sqlite-utils";
|
|
homepage = "https://github.com/simonw/sqlite-utils";
|
|
changelog = "https://github.com/simonw/sqlite-utils/releases/tag/${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
meatcar
|
|
techknowlogick
|
|
];
|
|
};
|
|
}
|