python312Packages.tubes: 0.2.1 -> 0.2.1-unstable-2023-11-06 (#311722)

no recent releases on PyPi, but latest commit on Github fixes unittest errors on Python 3.12
This commit is contained in:
Joseph Stahl
2024-05-16 09:32:00 +02:00
committed by GitHub
parent 801e37adba
commit 371b127de0
@@ -1,19 +1,30 @@
{ lib, buildPythonPackage, fetchPypi, python
, characteristic, six, twisted
{
lib,
buildPythonPackage,
fetchFromGitHub,
python,
characteristic,
six,
twisted,
}:
buildPythonPackage rec {
pname = "tubes";
version = "0.2.1";
version = "0.2.1-unstable-2023-11-06";
format = "setuptools";
src = fetchPypi {
pname = "Tubes";
inherit version;
hash = "sha256-WbkZfy+m9/xrwygd5VeXrccpu3XJxhO09tbEFZnw14s=";
src = fetchFromGitHub {
owner = "twisted";
repo = "tubes";
rev = "b74680b8e7bcfe64362865356bb9461b77bbd5c0";
hash = "sha256-E8brnt8CtTEEP1KQTsTsgnl54H4zRGp+1IuoI/Qf5NA=";
};
propagatedBuildInputs = [ characteristic six twisted ];
propagatedBuildInputs = [
characteristic
six
twisted
];
checkPhase = ''
${python.interpreter} -m twisted.trial -j $NIX_BUILD_CORES tubes
@@ -23,8 +34,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "a data-processing and flow-control engine for event-driven programs";
homepage = "https://github.com/twisted/tubes";
license = licenses.mit;
homepage = "https://github.com/twisted/tubes";
license = licenses.mit;
maintainers = with maintainers; [ exarkun ];
};
}