mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
pythonPackages.rq: init at 1.1.0
This commit is contained in:
parent
4464d4e57c
commit
3188402aab
24
pkgs/development/python-modules/rq/default.nix
Normal file
24
pkgs/development/python-modules/rq/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, fetchPypi, buildPythonPackage, click, redis }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rq";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1fs03g1n1l8k03zwhkhckhsrnnsm3645sqby2nwh5gfij2kcc9sg";
|
||||
};
|
||||
|
||||
# test require a running redis rerver, which is something we can't do yet
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = [ click redis ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A simple, lightweight library for creating background jobs, and processing them";
|
||||
homepage = "https://github.com/nvie/rq/";
|
||||
maintainers = with maintainers; [ mrmebelman ];
|
||||
license = licenses.bsd2;
|
||||
};
|
||||
}
|
||||
|
|
@ -935,6 +935,8 @@ in {
|
|||
|
||||
rlp = callPackage ../development/python-modules/rlp { };
|
||||
|
||||
rq = callPackage ../development/python-modules/rq { };
|
||||
|
||||
rx = callPackage ../development/python-modules/rx { };
|
||||
|
||||
sabyenc = callPackage ../development/python-modules/sabyenc { };
|
||||
|
|
Loading…
Reference in a new issue