mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 00:54:11 +00:00
93cde0b7c8
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-billiard/versions
21 lines
509 B
Nix
21 lines
509 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest, case }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "billiard";
|
|
version = "3.5.0.5";
|
|
disabled = isPyPy;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "03msmapj3s5zgqk87d646mafz7a01h5bm2wijalgpi0s80ks5na2";
|
|
};
|
|
|
|
buildInputs = [ pytest case ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/celery/billiard;
|
|
description = "Python multiprocessing fork with improvements and bugfixes";
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|