7 poetry-dynamic-versioning,
10 buildPythonPackage rec {
11 pname = "interface-meta";
16 src = fetchFromGitHub {
17 owner = "matthewwardrop";
18 repo = "interface_meta";
20 sha256 = "0rzh11wnab33b11391vc2ynf8ncxn22b12wn46lmgkrc5mqza8hd";
23 patches = [ ./0001-fix-version.patch ];
25 nativeBuildInputs = [ poetry-core ];
27 propagatedBuildInputs = [ poetry-dynamic-versioning ];
29 pythonImportsCheck = [ "interface_meta" ];
31 checkInputs = [ pytestCheckHook ];
34 homepage = "https://github.com/matthewwardrop/interface_meta";
35 description = "Convenient way to expose an extensible API with enforced method signatures and consistent documentation";
36 license = lib.licenses.mit;
37 maintainers = with lib.maintainers; [ swflint ];