1{ stdenv
2, buildPythonPackage
3, fetchgit
4}:
5
6buildPythonPackage rec {
7 pname = "pykka";
8 version = "2.0.1";
9
10 src = fetchgit {
11 url = "https://github.com/jodal/pykka.git";
12 rev = "refs/tags/v${version}";
13 sha256 = "011rvv3vzj9rpwaq6vfpz9hfwm6gx1jmad4iri6z12g8nnlpydhs";
14 };
15
16 # There are no tests
17 doCheck = false;
18
19 meta = with stdenv.lib; {
20 homepage = http://www.pykka.org;
21 description = "A Python implementation of the actor model";
22 license = licenses.asl20;
23 maintainers = [];
24 };
25
26}