Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / asgineer / default.nix
blobc1fae6959a695e14180f3540a40c49b38d9a2dc4
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 , requests
6 }:
8 buildPythonPackage rec {
9   pname = "asgineer";
10   version = "0.8.2";
11   format = "setuptools";
13   # PyPI tarball doesn't include tests directory
14   src = fetchFromGitHub {
15     owner = "almarklein";
16     repo = pname;
17     rev = "refs/tags/v${version}";
18     sha256 = "sha256-UYnVlsdEhEAJF21zVmjAXX01K6LQR2I+Dfw5tSsmf5E=";
19   };
21   nativeCheckInputs = [
22     pytestCheckHook
23     requests
24   ];
26   meta = with lib; {
27     description = "A really thin ASGI web framework";
28     license = licenses.bsd2;
29     homepage = "https://asgineer.readthedocs.io";
30     maintainers = [ maintainers.matthiasbeyer ];
31   };