summary refs log tree commit diff
path: root/pkgs/development/python-modules/multipart/default.nix
blob: 84daaac2773f45047ed5c954fca23cb0573b5785 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "multipart";
  version = "0.2.4";

  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "06ba205360bc7096fefe618e4f1e9b2cdb890b4f2157053a81f386912a2522cb";
  };

  patches = [
    (fetchpatch {
      name = "dont-test-semicolon-separators-in-urlencoded-data.patch";
      url = "https://github.com/defnull/multipart/commit/4d4ac6b79c453918ebf40c690e8d57d982ee840b.patch";
      hash = "sha256-rMeMhQEhonWAHzy5M8Im5mL6km5a9O0CGVOV+T3UNqo=";
    })
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [ "multipart" ];

  meta = {
    description = "Parser for multipart/form-data";
    homepage = "https://github.com/defnull/multipart";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}