1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 nose2,
6 pytestCheckHook,
7 setuptools,
8}:
9
10buildPythonPackage rec {
11 pname = "setuptools-dso";
12 version = "2.12.2";
13 pyproject = true;
14
15 src = fetchPypi {
16 pname = "setuptools_dso";
17 inherit version;
18 hash = "sha256-evt2+T0Tzp2iRQJnbY8tTbw9o1xiRflfJ9+fp0RQeaQ=";
19 };
20
21 build-system = [ setuptools ];
22
23 nativeCheckInputs = [
24 nose2
25 pytestCheckHook
26 ];
27
28 meta = with lib; {
29 description = "Setuptools extension for building non-Python Dynamic Shared Objects";
30 homepage = "https://github.com/mdavidsaver/setuptools_dso";
31 license = licenses.bsd3;
32 maintainers = with maintainers; [ marius851000 ];
33 };
34}