depot/third_party/nixpkgs/pkgs/development/python-modules/ppft/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

44 lines
770 B
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, python
, pythonOlder
, six
}:
buildPythonPackage rec {
pname = "ppft";
version = "1.7.6.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-+TPwQE8+gIvIYHRayzt5zU/jHqGaIIiaZF+QBBW+YPE=";
};
propagatedBuildInputs = [
six
];
# darwin seems to hang
doCheck = !stdenv.isDarwin;
checkPhase = ''
runHook preCheck
${python.interpreter} -m ppft.tests
runHook postCheck
'';
pythonImportsCheck = [
"ppft"
];
meta = with lib; {
description = "Distributed and parallel Python";
homepage = "https://ppft.readthedocs.io/";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}