Files
nixpkgs/pkgs/development/python-modules/asgineer/default.nix
T
2025-01-27 10:54:40 +01:00

34 lines
668 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
requests,
}:
buildPythonPackage rec {
pname = "asgineer";
version = "0.8.3";
format = "setuptools";
# PyPI tarball doesn't include tests directory
src = fetchFromGitHub {
owner = "almarklein";
repo = pname;
tag = "v${version}";
sha256 = "sha256-9F/66Yi394C1tZWK/BiaCltvRZGVNq+cREDHUoyVLr4=";
};
nativeCheckInputs = [
pytestCheckHook
requests
];
meta = with lib; {
description = "Really thin ASGI web framework";
license = licenses.bsd2;
homepage = "https://asgineer.readthedocs.io";
maintainers = [ maintainers.matthiasbeyer ];
};
}