nixpkgs/pkgs/development/python-modules/billiard/default.nix

21 lines
521 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest, case }:
buildPythonPackage rec {
pname = "billiard";
2018-04-04 21:02:18 +03:00
version = "3.5.0.3";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
2018-04-04 21:02:18 +03:00
sha256 = "1d7b22bdc47aa52841120fcd22a74ae4fc8c13e9d3935643098184f5788c3ce6";
};
buildInputs = [ pytest case ];
meta = with stdenv.lib; {
homepage = https://github.com/celery/billiard;
description = "Python multiprocessing fork with improvements and bugfixes";
license = licenses.bsd3;
};
}