tailscale: build derpprobe (#364918)
[NixPkgs.git] / pkgs / development / python-modules / python-sql / default.nix
bloba7d91fcb759a8d55dc40f367c7c02b0c6f3ebe8f
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   pytestCheckHook,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "python-sql";
11   version = "1.5.1";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     pname = "python_sql";
18     inherit version;
19     hash = "sha256-93RnHx0IT6a6Q4mJJM3r5O0NAHHfjWCAQKzU8cjYaqM=";
20   };
22   nativeCheckInputs = [ pytestCheckHook ];
24   pythonImportsCheck = [ "sql" ];
26   meta = with lib; {
27     description = "Library to write SQL queries in a pythonic way";
28     homepage = "https://foss.heptapod.net/tryton/python-sql";
29     changelog = "https://foss.heptapod.net/tryton/python-sql/-/blob/${version}/CHANGELOG";
30     license = licenses.bsd3;
31     maintainers = with maintainers; [ johbo ];
32   };