2018-10-16 15:36:04 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "peppercorn";
|
2018-11-09 03:32:20 +00:00
|
|
|
version = "0.6";
|
2018-10-16 15:36:04 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-09 03:32:20 +00:00
|
|
|
sha256 = "1ip4bfwcpwkq9hz2dai14k2cyabvwrnvcvrcmzxmqm04g8fnimwn";
|
2018-10-16 15:36:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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/;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2018-10-16 15:36:04 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|