biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / multipart / default.nix
blob312699ecda4162446ed70e6e04ebe225a735637a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "multipart";
11   version = "0.2.5";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-+piDjUDJZ7sZWJYmoPuKXEDEId2i/r4bA1H89ibiRlE=";
17   };
19   build-system = [ setuptools ];
21   nativeCheckInputs = [ pytestCheckHook ];
23   pythonImportsCheck = [ "multipart" ];
25   meta = {
26     description = "Parser for multipart/form-data";
27     homepage = "https://github.com/defnull/multipart";
28     license = lib.licenses.mit;
29     maintainers = with lib.maintainers; [ dotlambda ];
30   };