ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pybase64 / default.nix
blobd16ff8e4ef34509f0fd49034ab4ff76805267e33
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "pybase64";
10   version = "1.2.3";
12   disabled = pythonOlder "3.6";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-dtB035p7mJs1iZJqsZRmd7uzmez+IwcUsTFX4mM2Ee0=";
17   };
19   checkInputs = [ pytestCheckHook ];
21   pythonImportsCheck = [ "pybase64" ];
23   meta = with lib; {
24     description = "Fast Base64 encoding/decoding";
25     homepage = "https://github.com/mayeut/pybase64";
26     license = licenses.bsd2;
27     maintainers = with maintainers; [ ];
28   };