python313Packages.publicsuffixlist: 1.0.2.20250122 -> 1.0.2.20250124 (#376319)
[NixPkgs.git] / pkgs / development / python-modules / mill-local / default.nix
blob6954e6311aafbc0a32ac7b0ac9fce6618528e037
2   lib,
3   aiohttp,
4   async-timeout,
5   buildPythonPackage,
6   fetchFromGitHub,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "mill-local";
12   version = "0.3.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.8";
17   src = fetchFromGitHub {
18     owner = "Danielhiversen";
19     repo = "pyMillLocal";
20     tag = version;
21     hash = "sha256-kFBzasS7/5AM/ZW5z1ncZ9Xwuy/bh2LTVXPxNTLQnV0=";
22   };
24   propagatedBuildInputs = [
25     aiohttp
26     async-timeout
27   ];
29   # Project has no tests
30   doCheck = false;
32   pythonImportsCheck = [ "mill_local" ];
34   meta = with lib; {
35     description = "Python module to communicate locally with Mill heaters";
36     homepage = "https://github.com/Danielhiversen/pyMillLocal";
37     changelog = "https://github.com/Danielhiversen/pyMillLocal/releases/tag/${version}";
38     license = with licenses; [ mit ];
39     maintainers = with maintainers; [ fab ];
40   };