nanomsg-python: init at 1.0.20190114 (#54075)

This commit is contained in:
Ben Gamari 2019-01-21 17:17:21 -05:00 committed by Danylo Hlynskyi
parent b7b6d61a43
commit bdc0910e1d
2 changed files with 27 additions and 0 deletions

View file

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

View file

@ -454,6 +454,8 @@ in {
mwoauth = callPackage ../development/python-modules/mwoauth { };
nanomsg-python = callPackage ../development/python-modules/nanomsg-python { inherit (pkgs) nanomsg; };
nbval = callPackage ../development/python-modules/nbval { };
nest-asyncio = callPackage ../development/python-modules/nest-asyncio { };