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

buildPythonPackage rec {
  pname = "peppercorn";
  version = "0.6";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1ip4bfwcpwkq9hz2dai14k2cyabvwrnvcvrcmzxmqm04g8fnimwn";
  };

  meta = with lib; {
    description = "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; [ domenkozar ];
    platforms = platforms.all;
  };
}