Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / irctokens / default.nix
blobb2b35a7a926bd684f1b859eb4d239fb6e0fdff96
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 , pyyaml
6 , python
7 }:
9 buildPythonPackage rec {
10   pname = "irctokens";
11   version = "2.0.2";
12   disabled = pythonOlder "3.6";  # f-strings
14   src = fetchFromGitHub {
15     owner = "jesopo";
16     repo = pname;
17     rev = "v${version}";
18     hash = "sha256-Y9NBqxGUkt48hnXxsmfydHkJmWWb+sRrElV8C7l9bpw=";
19   };
21   nativeCheckInputs = [ pyyaml ];
22   checkPhase = ''
23     ${python.interpreter} -m unittest test
24   '';
26   pythonImportsCheck = [ "irctokens" ];
28   meta = with lib; {
29     description = "RFC1459 and IRCv3 protocol tokeniser library for python3";
30     license = licenses.mit;
31     homepage = "https://github.com/jesopo/irctokens";
32     maintainers = with maintainers; [ hexa ];
33   };