linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / exrex / default.nix
blob8c980c8d00fad4fdc8d2bb3aa9e4d554c2050f47
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "exrex";
8   version = "0.10.5";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "1wq8nyycdprxl9q9y1pfhkbca4rvysj45h1xn7waybl3v67v3f1z";
13   };
15   # Projec thas no released tests
16   doCheck = false;
17   pythonImportsCheck = [ "exrex" ];
19   meta = with lib; {
20     description = "Irregular methods on regular expressions";
21     homepage = "https://github.com/asciimoo/exrex";
22     license = with licenses; [ agpl3Plus ];
23     maintainers = with maintainers; [ fab ];
24   };