Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / crate / default.nix
blob9be85ff4b3cda9bc61f51e653a5ab771f5362ad7
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , urllib3
5 , geojson
6 , isPy3k
7 , sqlalchemy
8 , pytestCheckHook
9 , stdenv
12 buildPythonPackage rec {
13   pname = "crate";
14   version = "0.26.0";
15   disabled = !isPy3k;
17   src = fetchPypi {
18     inherit pname version;
19     sha256 = "6f650c2efe250b89bf35f8fe3211eb37ebc8d76f7a9c09bd73db3076708fa2fc";
20   };
22   propagatedBuildInputs = [
23     urllib3
24     sqlalchemy
25     geojson
26   ];
28   checkInputs = [
29     pytestCheckHook
30   ];
32   disabledTestPaths = lib.optionals stdenv.isDarwin [ "src/crate/client/test_http.py" ];
34   meta = with lib; {
35     homepage = "https://github.com/crate/crate-python";
36     description = "A Python client library for CrateDB";
37     license = licenses.asl20;
38     maintainers = with maintainers; [ doronbehar ];
39   };