nixpkgs/pkgs/development/python-modules/managesieve/default.nix

26 lines
627 B
Nix
Raw Permalink Normal View History

2019-10-17 06:50:49 +00:00
{ lib
, buildPythonPackage
, fetchPypi
2021-03-07 19:26:21 +00:00
, pytestCheckHook
2019-10-17 06:50:49 +00:00
}:
buildPythonPackage rec {
pname = "managesieve";
version = "0.7.1";
2019-10-17 06:50:49 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "44930a3b48332d23b35a5305ae7ba47904d4485ed1b7a22208b7d5ad9d60427a";
2019-10-17 06:50:49 +00:00
};
2021-03-07 19:26:21 +00:00
checkInputs = [ pytestCheckHook ];
2021-03-05 19:23:03 +00:00
2019-10-17 06:50:49 +00:00
meta = with lib; {
description = "ManageSieve client library for remotely managing Sieve scripts";
2021-03-05 19:23:03 +00:00
homepage = "https://managesieve.readthedocs.io/";
# PSFL for the python module, GPLv3 only for sieveshell
license = with licenses; [ gpl3Only psfl ];
2019-10-17 06:50:49 +00:00
maintainers = with maintainers; [ dadada ];
};
}