evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / sansio-multipart / default.nix
blobef47ab77c7ed4cb86698a704f804f52d950a8583
2   lib,
3   buildPythonPackage,
4   isPy27,
5   fetchPypi,
6 }:
8 buildPythonPackage rec {
9   pname = "sansio-multipart";
10   version = "0.3";
12   disabled = isPy27;
14   format = "setuptools";
16   src = fetchPypi {
17     pname = "sansio_multipart";
18     inherit version;
19     sha256 = "6e95b2e64039a95d0f2cd8f3360eaf418d6b9018fb2215d82d399d62d6122dc3";
20   };
22   # upstream has no tests
23   doCheck = false;
25   pythonImportsCheck = [ "sansio_multipart" ];
27   meta = {
28     description = "Parser for multipart/form-data";
29     homepage = "https://github.com/theelous3/sansio-multipart-parser";
30     license = lib.licenses.mit;
31     maintainers = with lib.maintainers; [ dotlambda ];
32   };