python3Packages.crate: init at 0.24.0

This commit is contained in:
Doron Behar 2020-09-09 11:42:25 +03:00 committed by Jon
parent a28068a992
commit d07100d89f
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ stdenv
, fetchPypi
, buildPythonPackage
, urllib3
, isPy3k
, mock
, sqlalchemy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "crate";
version = "0.24.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "028q9r1qyqkq185awkazhplfy7y1081963fnjzi3kf3lxvz6yhay";
};
propagatedBuildInputs = [
urllib3
];
checkInputs = [
pytestCheckHook
sqlalchemy
mock
];
meta = with stdenv.lib; {
homepage = "https://github.com/crate/crate-python";
description = "A Python client library for CrateDB";
license = licenses.asl20;
maintainers = with maintainers; [ doronbehar ];
};
}

View file

@ -1311,6 +1311,8 @@ in {
crashtest = callPackage ../development/python-modules/crashtest { };
crate = callPackage ../development/python-modules/crate { };
crayons = callPackage ../development/python-modules/crayons { };
crc16 = callPackage ../development/python-modules/crc16 { };