5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
30 lines
667 B
Nix
30 lines
667 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nose2
|
|
, pytestCheckHook
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "setuptools-dso";
|
|
version = "2.10";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "setuptools_dso";
|
|
inherit version;
|
|
hash = "sha256-sjAZ9enOw3vF3zqXNbhu45SM5/sv2kIwfKC6SWJdG0Q=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
nativeCheckInputs = [ nose2 pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "setuptools extension for building non-Python Dynamic Shared Objects";
|
|
homepage = "https://github.com/mdavidsaver/setuptools_dso";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ marius851000 ];
|
|
};
|
|
}
|