mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
python3Packages.poster3: init at 0.8.1
This commit is contained in:
parent
a2be91ebe1
commit
1f11ee1a28
36
pkgs/development/python-modules/poster3/default.nix
Normal file
36
pkgs/development/python-modules/poster3/default.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
|
, paste
|
||||||
|
, webob
|
||||||
|
, pyopenssl
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "poster3";
|
||||||
|
version = "0.8.1";
|
||||||
|
format = "wheel"; # only redistributable available
|
||||||
|
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
format = "wheel";
|
||||||
|
python = "py3";
|
||||||
|
sha256 = "1b27d7d63e3191e5d7238631fc828e4493590e94dcea034e386c079d853cce14";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
paste
|
||||||
|
webob
|
||||||
|
pyopenssl
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Streaming HTTP uploads and multipart/form-data encoding";
|
||||||
|
homepage = https://atlee.ca/software/poster/;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ WhittlesJr ];
|
||||||
|
};
|
||||||
|
}
|
@ -1709,6 +1709,8 @@ in {
|
|||||||
|
|
||||||
proboscis = callPackage ../development/python-modules/proboscis {};
|
proboscis = callPackage ../development/python-modules/proboscis {};
|
||||||
|
|
||||||
|
poster3 = callPackage ../development/python-modules/poster3 { };
|
||||||
|
|
||||||
py4j = callPackage ../development/python-modules/py4j { };
|
py4j = callPackage ../development/python-modules/py4j { };
|
||||||
|
|
||||||
pyechonest = callPackage ../development/python-modules/pyechonest { };
|
pyechonest = callPackage ../development/python-modules/pyechonest { };
|
||||||
|
Loading…
Reference in New Issue
Block a user