nixpkgs/pkgs/development/python-modules/python-multipart/default.nix
2021-07-21 13:32:17 +02:00

42 lines
672 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pytest-cov
, mock
, pyyaml
, six
}:
buildPythonPackage rec {
pname = "python-multipart";
version = "0.0.5";
src = fetchPypi {
inherit pname version;
sha256 = "f7bb5f611fc600d15fa47b3974c8aa16e93724513b49b5f95c81e6624c83fa43";
};
checkInputs = [
pytest
pytest-cov
mock
pyyaml
];
propagatedBuildInputs = [
six
];
checkPhase = ''
pytest
'';
meta = with lib; {
description = "A streaming multipart parser for Python";
homepage = "https://github.com/andrew-d/python-multipart";
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}