linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / poster3 / default.nix
blob09e8055bdd91e2f9d5d19de88a7dd58468eab86d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy3k
5 , paste
6 , webob
7 , pyopenssl
8 }:
10 buildPythonPackage rec {
11   pname = "poster3";
12   version = "0.8.1";
13   format = "wheel"; # only redistributable available
15   disabled = !isPy3k;
17   src = fetchPypi {
18     inherit pname version format;
19     python = "py3";
20     sha256 = "1b27d7d63e3191e5d7238631fc828e4493590e94dcea034e386c079d853cce14";
21   };
23   checkInputs = [
24     paste
25     webob
26     pyopenssl
27   ];
29   meta = with lib; {
30     description = "Streaming HTTP uploads and multipart/form-data encoding";
31     homepage = "https://atlee.ca/software/poster/";
32     license = licenses.mit;
33     maintainers = with maintainers; [ WhittlesJr ];
34   };