Merge pull request #107629 from marsam/update-pykka
This commit is contained in:
commit
1691ceee22
@ -1,27 +1,21 @@
|
|||||||
{ 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";
|
||||||
|
maintainers = [ maintainers.marsam ];
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = [];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user