about summary refs log tree commit diff
path: root/pkgs/development/python-modules/peppercorn/default.nix
blob: 5a07fc217a9563a4ba0d55a7f718c80e1cc2367e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "peppercorn";
  version = "0.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "921cba5d51fa211e6da0fbd2120b9a98d663422a80f5bb669ad81ffb0909774b";
  };

  meta = with stdenv.lib; {
    description = "A library for converting a token stream into a data structure for use in web form posts";
    homepage = https://docs.pylonsproject.org/projects/peppercorn/en/latest/;
    maintainers = with maintainers; [ garbas domenkozar ];
    platforms = platforms.all;
  };

}