pythonPackages.txredisapi: init at 1.4.7
This commit is contained in:
parent
21e25c659f
commit
6d90bc1c11
2 changed files with 28 additions and 0 deletions
26
pkgs/development/python-modules/txredisapi/default.nix
Normal file
26
pkgs/development/python-modules/txredisapi/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, nixosTests, six, twisted }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "txredisapi";
|
||||
version = "1.4.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "IlyaSkriblovsky";
|
||||
repo = "txredisapi";
|
||||
rev = "1.4.7";
|
||||
sha256 = "1f7j3c5l7jcfphvsk7nqmgyb4jaydbzq081m555kw0f9xxak0pgq";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six twisted ];
|
||||
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "txredisapi" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/IlyaSkriblovsky/txredisapi";
|
||||
description = "non-blocking redis client for python";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ dandellion ];
|
||||
};
|
||||
}
|
||||
|
|
@ -8699,6 +8699,8 @@ in {
|
|||
|
||||
txgithub = callPackage ../development/python-modules/txgithub { };
|
||||
|
||||
txredisapi = callPackage ../development/python-modules/txredisapi { };
|
||||
|
||||
txrequests = callPackage ../development/python-modules/txrequests { };
|
||||
|
||||
txtorcon = callPackage ../development/python-modules/txtorcon { };
|
||||
|
|
Loading…
Reference in a new issue