Merge pull request from dadada/managesieve-0.6-0.7

sieveshell: 0.6 -> 0.7
This commit is contained in:
Jörg Thalheim 2021-03-08 06:00:44 +00:00 committed by GitHub
commit 703b601c00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,26 +1,25 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pytestrunner , pytestCheckHook
, pytest
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "managesieve"; pname = "managesieve";
version = "0.6"; version = "0.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "ee70e298e9b68eb81f93d52a1320a034fdc182f3927fdd551836fc93b0ed2c5f"; sha256 = "1dx0j8hhjwip1ackaj2m4hqrrx2iiv846ic4wa6ymrawwb8iq8m6";
}; };
checkInputs = [ pytestrunner pytest ]; checkInputs = [ pytestCheckHook ];
meta = with lib; { meta = with lib; {
description = "ManageSieve client library for remotely managing Sieve scripts"; description = "ManageSieve client library for remotely managing Sieve scripts";
homepage = "https://managesieve.readthedocs.io/"; homepage = "https://managesieve.readthedocs.io/";
# PSFL for the python module, GPLv3 for sieveshell # PSFL for the python module, GPLv3 only for sieveshell
license = with licenses; [ gpl3 psfl ]; license = with licenses; [ gpl3Only psfl ];
maintainers = with maintainers; [ dadada ]; maintainers = with maintainers; [ dadada ];
}; };
} }