forked from mirrors/nixpkgs
headerparser: init at 0.4.0
This commit is contained in:
parent
f5014e47fe
commit
97452c285c
27
pkgs/development/python-modules/headerparser/default.nix
Normal file
27
pkgs/development/python-modules/headerparser/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue