python3Packages.jsonrpc-base: 1.1.0 -> 2.0.0

Fetch source from GitHub so we can run tests, update homepage.
This commit is contained in:
Martin Weinelt 2021-04-10 01:24:28 +02:00
parent d23d0aa3bb
commit 3779c01110

View file

@ -1,19 +1,31 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jsonrpc-base";
version = "1.1.0";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "7f374c57bfa1cb16d1f340d270bc0d9f1f5608fb1ac6c9ea15768c0e6ece48b7";
src = fetchFromGitHub {
owner = "emlove";
repo = pname;
rev = version;
sha256 = "0xxhn0vb7mr8k1w9xbqhhyx9qkgkc318qkyflgfbvjc926n50680";
};
propagatedBuildInputs = [ ];
checkInputs = [
pytestCheckHook
];
pytestFlagsArray = [
"tests.py"
];
meta = with lib; {
description = "A JSON-RPC client library base interface";
homepage = "https://github.com/armills/jsonrpc-base";
homepage = "https://github.com/emlove/jsonrpc-base";
license = licenses.bsd3;
maintainers = with maintainers; [ peterhoeg ];
};