mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
27 lines
522 B
Nix
27 lines
522 B
Nix
{ 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 = [];
|
|
};
|
|
|
|
}
|