2c931312ce
+ use fetchFromGithub where possible
28 lines
527 B
Nix
28 lines
527 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pykka";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jodal";
|
|
repo = pname;
|
|
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 = [];
|
|
};
|
|
|
|
}
|