1{ lib
2, buildPythonPackage
3, fetchPypi
4, isPy3k
5, pycrypto
6}:
7
8buildPythonPackage rec {
9 pname = "http_signature";
10 version = "0.1.4";
11 disabled = isPy3k;
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "14acc192ef20459d5e11b4e800dd3a4542f6bd2ab191bf5717c696bf30936c62";
16 };
17
18 propagatedBuildInputs = [ pycrypto ];
19
20 meta = with lib; {
21 homepage = "https://github.com/atl/py-http-signature";
22 description = "Simple secure signing for HTTP requests using http-signature";
23 license = licenses.mit;
24 };
25
26}