about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/magic-wormhole-mailbox-server/default.nix
blob: 4347f07d9c2ce3b7ca9931052a69b43c3e604525 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, six, attrs, twisted, pyopenssl, service-identity, autobahn, treq, mock }:

buildPythonPackage rec {
  version = "0.3.1";
  pname = "magic-wormhole-mailbox-server";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1q6zhbx8fcpk7rchclm7yqcxdsc1x97hki2ji61sa544r5xvxv55";
  };

  propagatedBuildInputs = [ six attrs twisted pyopenssl service-identity autobahn ];
  checkInputs = [ treq mock ];

  meta = with stdenv.lib; {
    description = "Securely transfer data between computers";
    homepage = https://github.com/warner/magic-wormhole-mailbox-server;
    license = licenses.mit;
  };
}