Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sjcl / default.nix
bloba44ceb91589f4b5cbe57331d8d6bd985f4f519b0
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 , pycryptodome
6 , unittestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "sjcl";
11   version = "0.2.1";
13   format = "setuptools";
15   # PyPi release is missing tests
16   src = fetchFromGitHub {
17     owner = "berlincode";
18     repo = pname;
19     # commit from: 2018-08-16, because there aren't any tags on git
20     rev = "e8bdad312fa99c89c74f8651a1240afba8a9f3bd";
21     sha256 = "1v8rc55v28v8cl7nxcavj34am005wi63zcvwnbc6pyfbv4ss30ab";
22   };
24   propagatedBuildInputs = [ pycryptodome ];
26   nativeCheckInputs = [ unittestCheckHook ];
28   pythonImportsCheck = [
29     "sjcl"
30   ];
32   meta = with lib; {
33     description = "Decrypt and encrypt messages compatible to the \"Stanford Javascript Crypto Library (SJCL)\" message format. This is a wrapper around pycrypto.";
34     homepage = "https://github.com/berlincode/sjcl";
35     license = licenses.bsd3;
36     maintainers = with maintainers; [ binsky ];
37   };