nanomsg-python: init at 1.0.20190114 (#54075)
This commit is contained in:
parent
b7b6d61a43
commit
bdc0910e1d
25
pkgs/development/python-modules/nanomsg-python/default.nix
Normal file
25
pkgs/development/python-modules/nanomsg-python/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user