mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 18:54:42 +00:00
python312Packages.nanomsg-python: format with nixfmt
This commit is contained in:
parent
bd16fcc918
commit
b69b3c14a6
@ -1,9 +1,10 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, nanomsg
|
||||
, setuptools
|
||||
, pythonOlder
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
nanomsg,
|
||||
setuptools,
|
||||
pythonOlder,
|
||||
}:
|
||||
|
||||
buildPythonPackage {
|
||||
@ -20,20 +21,14 @@ buildPythonPackage {
|
||||
hash = "sha256-NHurZWiW/Csp6NyuSV+oD16+L2uPUZWGzb2nWi9b/uE=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
buildInputs = [
|
||||
nanomsg
|
||||
];
|
||||
buildInputs = [ nanomsg ];
|
||||
|
||||
# Tests requires network connections
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"nanomsg"
|
||||
];
|
||||
pythonImportsCheck = [ "nanomsg" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bindings for nanomsg";
|
||||
|
Loading…
Reference in New Issue
Block a user