summary refs log tree commit diff
path: root/pkgs/development/python-modules/http_signature/default.nix
blob: 145eea751b9b1772a35b62df8c1a4e13539bad63 (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
{ lib, 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 lib; {
    homepage = "https://github.com/atl/py-http-signature";
    description = "Simple secure signing for HTTP requests using http-signature";
    license = licenses.mit;
  };

}