Merge pull request #311046 from fabaff/nanomsg-python-bump

python312Packages.nanomsg-python: refactor
This commit is contained in:
Fabian Affolter 2024-05-12 17:44:03 +02:00 committed by GitHub
commit d4aafe0229
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,22 +1,35 @@
{ lib, buildPythonPackage, fetchFromGitHub, nanomsg }:
{
lib,
buildPythonPackage,
fetchFromGitHub,
nanomsg,
setuptools,
pythonOlder,
}:
buildPythonPackage {
pname = "nanomsg-python";
version = "1.0.20190114";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "tonysimpson";
repo = "nanomsg-python";
rev = "3acd9160f90f91034d4a43ce603aaa19fbaf1f2e";
sha256 = "1qgybcpmm9xxrn39alcgdcpvwphgm1glkbnwx0ljpz4nd1jsnyrl";
hash = "sha256-NHurZWiW/Csp6NyuSV+oD16+L2uPUZWGzb2nWi9b/uE=";
};
build-system = [ setuptools ];
buildInputs = [ nanomsg ];
# Tests requires network connections
doCheck = false;
pythonImportsCheck = [ "nanomsg" ];
meta = with lib; {
description = "Bindings for nanomsg";
homepage = "https://github.com/tonysimpson/nanomsg-python";