My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/nanomsg-python/default.nix

25 lines
645 B

{ lib, buildPythonPackage, fetchFromGitHub, nanomsg }:
buildPythonPackage {
pname = "nanomsg-python";
version = "1.0.20190114";
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 ];
};
}