python3Packages.crate: init at 0.24.0
This commit is contained in:
parent
a28068a992
commit
d07100d89f
2 changed files with 39 additions and 0 deletions
37
pkgs/development/python-modules/crate/default.nix
Normal file
37
pkgs/development/python-modules/crate/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue