evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / asgineer / default.nix
blobf16cb368f4b8c6cfa0165257e37fc9499cebf89a
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6   requests,
7 }:
9 buildPythonPackage rec {
10   pname = "asgineer";
11   version = "0.8.2";
12   format = "setuptools";
14   # PyPI tarball doesn't include tests directory
15   src = fetchFromGitHub {
16     owner = "almarklein";
17     repo = pname;
18     rev = "refs/tags/v${version}";
19     sha256 = "sha256-UYnVlsdEhEAJF21zVmjAXX01K6LQR2I+Dfw5tSsmf5E=";
20   };
22   nativeCheckInputs = [
23     pytestCheckHook
24     requests
25   ];
27   meta = with lib; {
28     description = "Really thin ASGI web framework";
29     license = licenses.bsd2;
30     homepage = "https://asgineer.readthedocs.io";
31     maintainers = [ maintainers.matthiasbeyer ];
32   };