nixpkgs/pkgs/development/python-modules/websockify/default.nix
R. RyanTM a64bc80369 python37Packages.websockify: 0.8.0 -> 0.9.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-websockify/versions
2019-09-29 11:30:25 +02:00

25 lines
471 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, numpy
}:
buildPythonPackage rec {
version = "0.9.0";
pname = "websockify";
src = fetchPypi {
inherit pname version;
sha256 = "1nnalv0jkkj34hw6yb12lp6r6fj1ps9vkkyshjvx65y5xdwmnny3";
};
propagatedBuildInputs = [ numpy ];
meta = with stdenv.lib; {
description = "WebSockets support for any application/server";
homepage = https://github.com/kanaka/websockify;
license = licenses.lgpl3;
};
}