Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 nose2, 6 pytestCheckHook, 7 setuptools, 8}: 9 10buildPythonPackage rec { 11 pname = "setuptools-dso"; 12 version = "2.10"; 13 pyproject = true; 14 15 src = fetchPypi { 16 pname = "setuptools_dso"; 17 inherit version; 18 hash = "sha256-sjAZ9enOw3vF3zqXNbhu45SM5/sv2kIwfKC6SWJdG0Q="; 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}