summary refs log tree commit diff
path: root/pkgs/development/python-modules/signedjson/default.nix
blob: 33a615fefd4644f12cbc9014f21009295e7ad683 (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
, fetchgit
, canonicaljson
, unpaddedbase64
, pynacl
}:

buildPythonPackage rec {
  pname = "signedjson";
  version = "1.0.0";

  src = fetchgit {
    url = "https://github.com/matrix-org/python-signedjson.git";
    rev = "refs/tags/v${version}";
    sha256 = "0b8xxhc3npd4567kqapfp4gs7m0h057xam3an7424az262ind82n";
  };

  propagatedBuildInputs = [ canonicaljson unpaddedbase64 pynacl ];

  meta = with stdenv.lib; {
    homepage = https://pypi.org/project/signedjson/;
    description = "Sign JSON with Ed25519 signatures";
    license = licenses.asl20;
  };
}