587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
30 lines
672 B
Nix
30 lines
672 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 xfix ];
|
|
};
|
|
}
|