2019-01-21 23:17:21 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub, nanomsg }:
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
buildPythonPackage {
|
2019-01-21 23:17:21 +01:00
|
|
|
pname = "nanomsg-python";
|
|
|
|
version = "1.0.20190114";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tonysimpson";
|
|
|
|
repo = "nanomsg-python";
|
|
|
|
rev = "3acd9160f90f91034d4a43ce603aaa19fbaf1f2e";
|
|
|
|
sha256 = "1qgybcpmm9xxrn39alcgdcpvwphgm1glkbnwx0ljpz4nd1jsnyrl";
|
|
|
|
};
|
|
|
|
|
2019-01-22 00:23:48 +01:00
|
|
|
buildInputs = [ nanomsg ];
|
2019-01-21 23:17:21 +01:00
|
|
|
|
|
|
|
# Tests requires network connections
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-01-22 00:23:48 +01:00
|
|
|
description = "Bindings for nanomsg";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/tonysimpson/nanomsg-python";
|
2019-01-21 23:17:21 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ bgamari ];
|
|
|
|
};
|
|
|
|
}
|