3
0
Fork 0
forked from mirrors/nixpkgs

headerparser: init at 0.4.0

This commit is contained in:
ayazhafiz 2021-10-31 21:44:39 -04:00
parent f5014e47fe
commit 97452c285c
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, entry-points-txt
, six
}:
buildPythonPackage rec {
pname = "headerparser";
version = "0.4.0";
src = fetchPypi{
inherit pname;
inherit version;
sha256 = "b8ceae4c5e6133fda666d022684e93f9b3d45815c2c7881018123c71ff28c5cc";
};
buildInputs = [
six
];
meta = with lib; {
homepage = "https://github.com/jwodder/headerparser";
description = "argparse for mail-style headers";
license = with licenses; [ mit ];
};
}

View file

@ -3434,6 +3434,8 @@ in {
hdmedians = callPackage ../development/python-modules/hdmedians { };
headerparser = callPackage ../development/python-modules/headerparser { };
heapdict = callPackage ../development/python-modules/heapdict { };
helpdev = callPackage ../development/python-modules/helpdev { };