Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / wrapio / default.nix
blob9227009647d1a74442caeba4916e026d19427c73
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 }:
7 buildPythonPackage rec {
8   pname = "wrapio";
9   version = "2.0.0";
10   format = "setuptools";
12   disabled = pythonOlder "3.5";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-CUocIbdZ/tJQCxAHzhFpB267ynlXf8Mu+thcRRc0yeg=";
17   };
19   doCheck = false;
20   pythonImportsCheck = [ "wrapio" ];
22   meta = with lib; {
23     description = "Handling event-based streams";
24     homepage = "https://github.com/Exahilosys/wrapio";
25     changelog = "https://github.com/Exahilosys/wrapio/releases/tag/v${version}";
26     license = licenses.mit;
27     maintainers = with maintainers; [ sfrijters ];
28   };