depot/third_party/nixpkgs/pkgs/development/python-modules/pyngo/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

65 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pythonRelaxDepsHook
# build-system
, hatchling
# dependencies
, django
, pydantic
, typing-extensions
# tests
, django-stubs
, pytestCheckHook
, pytest-asyncio
}:
buildPythonPackage rec {
pname = "pyngo";
version = "2.0.0";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "yezz123";
repo = "pyngo";
rev = "refs/tags/${version}";
hash = "sha256-jHPZjS/J1VLpsLN2wg5UJCgavoSEs4Uogo4GI6bZMuY=";
};
nativeBuildInputs = [
hatchling
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"pydantic"
];
propagatedBuildInputs = [
django
pydantic
typing-extensions
];
pythonImportsCheck = [ "pyngo" ];
nativeCheckInputs = [
django-stubs
pytestCheckHook
pytest-asyncio
];
meta = with lib; {
changelog = "https://github.com/yezz123/pyngo/releases/tag/${version}";
description = "Pydantic model support for Django & Django-Rest-Framework";
homepage = "https://github.com/yezz123/pyngo";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}