Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, fetchPypi, buildPythonPackage, pytest, tox }: 2 3buildPythonPackage rec { 4 version = "1.0.0"; 5 pname = "pluginbase"; 6 7 buildInputs = [ pytest tox ]; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "497894df38d0db71e1a4fbbfaceb10c3ef49a3f95a0582e11b75f8adaa030005"; 12 }; 13 14 meta = with stdenv.lib; { 15 homepage = https://github.com/mitsuhiko/pluginbase; 16 description = "A support library for building plugins sytems in Python"; 17 license = licenses.bsd3; 18 platforms = platforms.all; 19 }; 20}