depot/third_party/nixpkgs/pkgs/development/python-modules/crate/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

50 lines
883 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, urllib3
, geojson
, isPy3k
, sqlalchemy
, pytestCheckHook
, pytz
, stdenv
}:
buildPythonPackage rec {
pname = "crate";
version = "0.29.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-SywW/b4DnVeSzzRiHbDaKTjcuwDnkwrK6vFfaQVIZhQ=";
};
propagatedBuildInputs = [
urllib3
sqlalchemy
geojson
];
checkInputs = [
pytestCheckHook
pytz
];
disabledTests = [
# network access
"test_layer_from_uri"
];
disabledTestPaths = [
# imports setuptools.ssl_support, which doesn't exist anymore
"src/crate/client/test_http.py"
];
meta = with lib; {
homepage = "https://github.com/crate/crate-python";
description = "A Python client library for CrateDB";
license = licenses.asl20;
maintainers = with maintainers; [ doronbehar ];
};
}