Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / managesieve / default.nix
blobfd2eac2b2c7ec9b9da024273de395a8528455776
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "managesieve";
9   version = "0.7.1";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "44930a3b48332d23b35a5305ae7ba47904d4485ed1b7a22208b7d5ad9d60427a";
14   };
16   checkInputs = [ pytestCheckHook ];
18   meta = with lib; {
19     description = "ManageSieve client library for remotely managing Sieve scripts";
20     homepage = "https://managesieve.readthedocs.io/";
21     # PSFL for the python module, GPLv3 only for sieveshell
22     license = with licenses; [ gpl3Only psfl ];
23     maintainers = with maintainers; [ dadada ];
24   };