mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
655 B
Nix
26 lines
655 B
Nix
{ stdenv, 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 stdenv.lib; {
|
|
description = "Bindings for nanomsg";
|
|
homepage = "https://github.com/tonysimpson/nanomsg-python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bgamari ];
|
|
};
|
|
}
|