python313Packages.nested-multipart-parser: init at 1.5.0
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
||||
# build-system
|
||||
setuptools,
|
||||
|
||||
# tests
|
||||
django,
|
||||
djangorestframework,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nested-multipart-parser";
|
||||
version = "1.5.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "remigermain";
|
||||
repo = "nested-multipart-parser";
|
||||
tag = version;
|
||||
hash = "sha256-9IGfYb6mVGkoE/6iDg0ap8c+0vrBDKK1DxzLRyfeWOk=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
django
|
||||
djangorestframework
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"nested_multipart_parser"
|
||||
];
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/remigermain/nested-multipart-parser/releases/tag/${src.tag}";
|
||||
description = "Parser for nested data for 'multipart/form'";
|
||||
homepage = "https://github.com/remigermain/nested-multipart-parser";
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
||||
@@ -9747,6 +9747,8 @@ self: super: with self; {
|
||||
|
||||
nested-lookup = callPackage ../development/python-modules/nested-lookup { };
|
||||
|
||||
nested-multipart-parser = callPackage ../development/python-modules/nested-multipart-parser { };
|
||||
|
||||
nestedtext = callPackage ../development/python-modules/nestedtext { };
|
||||
|
||||
netaddr = callPackage ../development/python-modules/netaddr { };
|
||||
|
||||
Reference in New Issue
Block a user