mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
Merge pull request #311046 from fabaff/nanomsg-python-bump
python312Packages.nanomsg-python: refactor
This commit is contained in:
commit
d4aafe0229
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user