1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5 docutils, 6}: 7 8buildPythonPackage rec { 9 pname = "statistics"; 10 version = "1.0.3.5"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "2dc379b80b07bf2ddd5488cad06b2b9531da4dd31edb04dc9ec0dc226486c138"; 16 }; 17 18 propagatedBuildInputs = [ docutils ]; 19 20 # statistics package does not have any tests 21 doCheck = false; 22 23 meta = { 24 description = "Python 2.* port of 3.4 Statistics Module"; 25 homepage = "https://github.com/digitalemagine/py-statistics"; 26 license = lib.licenses.asl20; 27 maintainers = [ ]; 28 }; 29}