mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
2c931312ce
+ use fetchFromGithub where possible
29 lines
638 B
Nix
29 lines
638 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, canonicaljson
|
|
, unpaddedbase64
|
|
, pynacl
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "signedjson";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "matrix-org";
|
|
repo = "python-${pname}";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "18s388hm3babnvakbbgfqk0jzq25nnznvhygywd3azp9b4yzmd5c";
|
|
};
|
|
|
|
propagatedBuildInputs = [ canonicaljson unpaddedbase64 pynacl typing-extensions ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://pypi.org/project/signedjson/";
|
|
description = "Sign JSON with Ed25519 signatures";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|