1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 setuptools,
6 typing-extensions,
7 pytestCheckHook,
8}:
9
10buildPythonPackage rec {
11 pname = "housekeeping";
12 version = "1.1";
13 pyproject = true;
14
15 src = fetchFromGitHub {
16 owner = "beanbaginc";
17 repo = "housekeeping";
18 tag = "release-${version}";
19 hash = "sha256-hRWZSRoXscjkUm0NUpkM6pKEdoirN6ZmpjWlNgoyCVY=";
20 };
21
22 build-system = [ setuptools ];
23
24 dependencies = [ typing-extensions ];
25
26 pythonImportsCheck = [ "housekeeping" ];
27
28 nativeCheckInputs = [ pytestCheckHook ];
29
30 meta = {
31 description = "Reusable deprecation helpers for Python projects";
32 homepage = "https://github.com/beanbaginc/housekeeping";
33 license = lib.licenses.mit;
34 maintainers = [ ];
35 };
36}