b189247ba0
Uses the HTTPS url for cases where the existing URL has a permanent redirect. For each domain, at least one fixed derivation URL was downloaded to test the domain is properly serving downloads. Also fixes jbake source URL, which was broken.
22 lines
546 B
Nix
22 lines
546 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, aiohttp, jsonrpc-base }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jsonrpc-async";
|
|
version = "0.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0f1p3qv56jn4sdyp8gzf915nya6vr0rn2pbzld9x23y9jdjmibzw";
|
|
};
|
|
|
|
propagatedBuildInputs = [ aiohttp jsonrpc-base ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A JSON-RPC client library for asyncio";
|
|
homepage = https://github.com/armills/jsonrpc-async;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
};
|
|
}
|