aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/pykka/default.nix
blob: a787b869527538935cf33c8897e9e4c26d2ffdd5 (plain)
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 = "2.0.1";

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

  # 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 = [];
  };

}