ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / websockify / default.nix
blobe1f311ba027b49e0b4f61418458ed87f7e084b0d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , numpy
5 }:
7 buildPythonPackage rec {
8   version = "0.10.0";
9   pname = "websockify";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "6c4cc1bc132abb4a99834bcb1b4bd72f51d35a08d08093a817646ecc226ac44e";
14   };
16   propagatedBuildInputs = [ numpy ];
18   # Ran 0 tests in 0.000s
19   doCheck = false;
21   pythonImportsCheck = [ "websockify" ];
23   meta = with lib; {
24     description = "WebSockets support for any application/server";
25     homepage = "https://github.com/kanaka/websockify";
26     license = licenses.lgpl3;
27     maintainers = with maintainers; [ ];
28   };