5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
35 lines
741 B
Nix
35 lines
741 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pysendfile";
|
|
version = "2.0.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-UQpBSycJhvujx5y3bZCkyRDHAb+0P/mDpdTpKEYFDhc=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
# Tests depend on asynchat and asyncore
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "sendfile" ];
|
|
|
|
meta = with lib; {
|
|
description = "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 = [ ];
|
|
};
|
|
}
|