9707e27b53
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-peppercorn/versions
23 lines
550 B
Nix
23 lines
550 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "peppercorn";
|
|
version = "0.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1ip4bfwcpwkq9hz2dai14k2cyabvwrnvcvrcmzxmqm04g8fnimwn";
|
|
};
|
|
|
|
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;
|
|
};
|
|
|
|
}
|