python312Packages.pysendfile: refactor

This commit is contained in:
Fabian Affolter 2024-05-02 22:26:37 +02:00
parent fce4c5c1a1
commit c7ff1e36ec

View File

@ -1,31 +1,40 @@
{ stdenv
, lib
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, python
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "pysendfile";
version = "2.0.1";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "05qf0m32isflln1zjgxlpw0wf469lj86vdwwqyizp1h94x5l22ji";
hash = "sha256-UQpBSycJhvujx5y3bZCkyRDHAb+0P/mDpdTpKEYFDhc=";
};
checkPhase = ''
# this test takes too long
sed -i 's/test_big_file/noop/' test/test_sendfile.py
${python.executable} test/test_sendfile.py
'';
build-system = [
setuptools
];
# Tests depend on asynchat and asyncore
doCheck = false;
pythonImportsCheck = [
"sendfile"
];
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://github.com/giampaolo/pysendfile";
description = "A Python interface to sendfile(2)";
homepage = "https://github.com/giampaolo/pysendfile";
changelog = "https://github.com/giampaolo/pysendfile/blob/release-${version}/HISTORY.rst";
license = licenses.mit;
maintainers = with maintainers; [ ];
broken = stdenv.isDarwin;
};
}