ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / jwcrypto / default.nix
blob3ff7cb5f039c526b41b469d383adb30b688b5b3f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , cryptography
5 , deprecated
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "jwcrypto";
11   version = "1.4.2";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-gKNentGzssQ84D2SxdSObQtmR+KqJhjkljRIkj14o3s=";
19   };
21   propagatedBuildInputs = [
22     cryptography
23     deprecated
24   ];
26   pythonImportsCheck = [
27     "jwcrypto"
28   ];
30   meta = with lib; {
31     description = "Implementation of JOSE Web standards";
32     homepage = "https://github.com/latchset/jwcrypto";
33     license = licenses.lgpl3Plus;
34     maintainers = with maintainers; [ costrouc ];
35   };