pythonPackages.billiards: 3.6.1.0 -> 3.6.3.0

This commit is contained in:
Jonathan Ringer 2020-03-18 12:46:57 -07:00 committed by Jon
parent 0c1118b7e0
commit 779d4e65b3

View file

@ -1,16 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest_4, case, psutil }:
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest, case, psutil }:
buildPythonPackage rec {
pname = "billiard";
version = "3.6.1.0";
version = "3.6.3.0";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
sha256 = "b8809c74f648dfe69b973c8e660bcec00603758c9db8ba89d7719f88d5f01f26";
sha256 = "0spssl3byzqsplra166d59jx8iqfxyzvcbx7vybkmwr5ck72a5yr";
};
checkInputs = [ pytest_4 case psutil ];
checkInputs = [ pytest case psutil ];
checkPhase = ''
pytest
'';
meta = with stdenv.lib; {
homepage = https://github.com/celery/billiard;