python3Packages.rq: 1.5.0 -> 1.5.1
This commit is contained in:
parent
f12bc6e530
commit
1d9f62e14b
1 changed files with 7 additions and 5 deletions
|
@ -1,13 +1,15 @@
|
|||
{ stdenv, fetchPypi, buildPythonPackage, isPy27, click, redis }:
|
||||
{ stdenv, fetchFromGitHub, buildPythonPackage, isPy27, click, redis }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rq";
|
||||
version = "1.5.0";
|
||||
version = "1.5.1";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "370fc800903c226b898a10174e069a23077b74b22297b4b20e925ca82fcd9471";
|
||||
src = fetchFromGitHub {
|
||||
owner = "rq";
|
||||
repo = "rq";
|
||||
rev = "v${version}";
|
||||
sha256 = "0i7yyw828wdvl7ap4gb7jhm4p94502is3xxrgrdgwwp0l1rac004";
|
||||
};
|
||||
|
||||
# test require a running redis rerver, which is something we can't do yet
|
||||
|
|
Loading…
Reference in a new issue