Unverified Commit 1644ed95 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.asgineer: 0.8.3 -> 0.9.3 (#388072)

parents 6381f838 144f9b69
Loading
Loading
Loading
Loading
+12 −7
Original line number Diff line number Diff line
@@ -4,30 +4,35 @@
  fetchFromGitHub,
  pytestCheckHook,
  requests,
  flit-core,
}:

buildPythonPackage rec {
  pname = "asgineer";
  version = "0.8.3";
  format = "setuptools";
  version = "0.9.3";
  pyproject = true;

  # PyPI tarball doesn't include tests directory
  src = fetchFromGitHub {
    owner = "almarklein";
    repo = pname;
    repo = "asgineer";
    tag = "v${version}";
    sha256 = "sha256-9F/66Yi394C1tZWK/BiaCltvRZGVNq+cREDHUoyVLr4=";
    hash = "sha256-Uk1kstEBt321BVeNcfdhZuonmm1i9IXSBnZLa4eDS2E=";
  };

  build-system = [ flit-core ];

  nativeCheckInputs = [
    pytestCheckHook
    requests
  ];

  pythonImportsCheck = [ "asgineer" ];

  meta = with lib; {
    description = "Really thin ASGI web framework";
    license = licenses.bsd2;
    homepage = "https://asgineer.readthedocs.io";
    maintainers = [ maintainers.matthiasbeyer ];
    changelog = "https://github.com/almarklein/asgineer/releases/tag/v${src.tag}";
    license = licenses.bsd2;
    maintainers = with maintainers; [ matthiasbeyer ];
  };
}