My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/headerparser/default.nix

27 lines
532 B

{ lib
, buildPythonPackage
, fetchPypi
, 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 ];
maintainers = with lib.maintainers; [ ayazhafiz ];
};
}