summary refs log tree commit diff
path: root/pkgs/development/python-modules/http_signature/default.nix
blob: d86861a92517b5d5d075d405cf94fde85c0f17f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, pycrypto
}:

buildPythonPackage rec {
  pname = "http_signature";
  version = "0.1.4";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "14acc192ef20459d5e11b4e800dd3a4542f6bd2ab191bf5717c696bf30936c62";
  };

  propagatedBuildInputs = [ pycrypto ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/atl/py-http-signature";
    description = "Simple secure signing for HTTP requests using http-signature";
    license = licenses.mit;
  };

}