1{ stdenv
2, buildPythonPackage
3, fetchgit
4}:
5
6buildPythonPackage rec {
7 pname = "pykka";
8 version = "1.2.0";
9
10 src = fetchgit {
11 url = "https://github.com/jodal/pykka.git";
12 rev = "refs/tags/v${version}";
13 sha256 = "0qlfw1054ap0cha1m6dbnq51kjxqxaf338g7jwnwy33b3gr8x0hg";
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 = with maintainers; [ rickynils ];
24 };
25
26}