blob: d17753e95ae85fb08092b322b1b0a7fb45fb8df9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildPythonPackage,
exceptiongroup,
fetchPypi,
poetry-core,
}:
buildPythonPackage rec {
pname = "generic";
version = "1.1.6";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-CFtkkGjFjvM4WsYz08nmik61eM5S71GT+Rh+nI8mZ1k=";
};
build-system = [ poetry-core ];
dependencies = [ exceptiongroup ];
pythonImportsCheck = [ "generic" ];
meta = {
description = "Generic programming (Multiple dispatch) library for Python";
homepage = "https://github.com/gaphor/generic";
changelog = "https://github.com/gaphor/generic/releases/tag/${version}";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|