nixpkgs/pkgs/development/python-modules/pykka/default.nix
Kevin Rauscher 05b4fe20a7 mopidy: update to python3
mopidy: 2.3.1 -> 3.0.1
mopidy-iris: 3.43.0 -> 3.44.0
mopidy-spotify: 3.1.0 -> 4.0.1
pykka: 1.2.0 -> 2.0.1
2020-02-10 09:53:13 +01:00

27 lines
520 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 = [];
};
}