depot/third_party/nixpkgs/pkgs/development/python-modules/nanomsg-python/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

26 lines
670 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, nanomsg }:
buildPythonPackage {
pname = "nanomsg-python";
version = "1.0.20190114";
format = "setuptools";
src = fetchFromGitHub {
owner = "tonysimpson";
repo = "nanomsg-python";
rev = "3acd9160f90f91034d4a43ce603aaa19fbaf1f2e";
sha256 = "1qgybcpmm9xxrn39alcgdcpvwphgm1glkbnwx0ljpz4nd1jsnyrl";
};
buildInputs = [ nanomsg ];
# Tests requires network connections
doCheck = false;
meta = with lib; {
description = "Bindings for nanomsg";
homepage = "https://github.com/tonysimpson/nanomsg-python";
license = licenses.mit;
maintainers = with maintainers; [ bgamari ];
};
}