Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / globre / default.nix
bloba270a2b4c430ce40dfbf08b4da416f41689da64f
1 { lib
2 , pythonAtLeast
3 , buildPythonPackage
4 , fetchPypi
5 , nose
6 , coverage
7 }:
9 buildPythonPackage rec {
10   pname = "globre";
11   version = "0.1.5";
12   format = "setuptools";
13   # https://github.com/metagriffin/globre/issues/7
14   disabled = pythonAtLeast "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "1qhjpg0722871dm5m7mmldf6c7mx58fbdvk1ix5i3s9py82448gf";
19   };
21   nativeCheckInputs = [ nose coverage ];
23   meta = with lib; {
24     homepage = "https://github.com/metagriffin/globre";
25     description = "A python glob-like regular expression generation library.";
26     maintainers = with maintainers; [ glittershark ];
27     license = licenses.gpl3;
28   };