pythonPackages.pykka: 2.0.1 -> 2.0.3

This commit is contained in:
Mario Rodas 2020-12-26 04:20:00 +00:00
parent 70eebb05ff
commit 2807df1672

View File

@ -1,27 +1,20 @@
{ stdenv { lib, buildPythonPackage, fetchPypi, pytestCheckHook, pytest-mock }:
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pykka"; pname = "Pykka";
version = "2.0.1"; version = "2.0.3";
src = fetchFromGitHub { src = fetchPypi {
owner = "jodal"; inherit pname version;
repo = pname; sha256 = "4b9d2363365b3455a0204bf163f09bd351d24b938c618c79d975a9510e128e95";
rev = "refs/tags/v${version}";
sha256 = "011rvv3vzj9rpwaq6vfpz9hfwm6gx1jmad4iri6z12g8nnlpydhs";
}; };
# There are no tests checkInputs = [ pytestCheckHook pytest-mock ];
doCheck = false;
meta = with stdenv.lib; { meta = with lib; {
homepage = "http://www.pykka.org"; homepage = "https://www.pykka.org/";
description = "A Python implementation of the actor model"; description = "A Python implementation of the actor model";
changelog = "https://github.com/jodal/pykka/blob/v${version}/docs/changes.rst";
license = licenses.asl20; license = licenses.asl20;
maintainers = [];
}; };
} }