summary refs log tree commit diff
path: root/pkgs/development/python-modules/pykka/default.nix
blob: c07f1b46cbe1ab2a0d864c77c69199bdfe51accb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv
, buildPythonPackage
, fetchgit
}:

buildPythonPackage rec {
  pname = "pykka";
  version = "1.2.0";

  src = fetchgit {
    url = "https://github.com/jodal/pykka.git";
    rev = "refs/tags/v${version}";
    sha256 = "0qlfw1054ap0cha1m6dbnq51kjxqxaf338g7jwnwy33b3gr8x0hg";
  };

  # There are no tests
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = http://www.pykka.org;
    description = "A Python implementation of the actor model";
    license = licenses.asl20;
    maintainers = [];
  };

}