baserow: drop redis overlay
This commit is contained in:
parent
01ed8ef136
commit
39d09bbf50
2 changed files with 0 additions and 27 deletions
|
@ -79,8 +79,6 @@ self: super: {
|
||||||
|
|
||||||
pytz = self.callPackage ./packages/pytz { };
|
pytz = self.callPackage ./packages/pytz { };
|
||||||
|
|
||||||
redis = self.callPackage ./packages/redis { };
|
|
||||||
|
|
||||||
regex = self.callPackage ./packages/regex { };
|
regex = self.callPackage ./packages/regex { };
|
||||||
|
|
||||||
requests = self.callPackage ./packages/requests { };
|
requests = self.callPackage ./packages/requests { };
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
# WARNING: This file was automatically generated. You should avoid editing it.
|
|
||||||
# If you run pynixify again, the file will be either overwritten or
|
|
||||||
# deleted, and you will lose the changes you made to it.
|
|
||||||
|
|
||||||
{ buildPythonPackage, deprecated, fetchPypi, lib, packaging }:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "redis";
|
|
||||||
version = "4.1.4";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "01i3kb52irz3aspzs6djm49x9fx7am7y4cqp4s23zngxi7ghr6hx";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ deprecated packaging ];
|
|
||||||
|
|
||||||
# TODO FIXME
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Python client for Redis database and key-value store";
|
|
||||||
homepage = "https://github.com/redis/redis-py";
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue