Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / statistics / default.nix
blob40a51373c70e3bb57363e508e87f887cc103cf78
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , docutils
5 }:
7 buildPythonPackage rec {
8   pname = "statistics";
9   version = "1.0.3.5";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "2dc379b80b07bf2ddd5488cad06b2b9531da4dd31edb04dc9ec0dc226486c138";
14   };
16   propagatedBuildInputs = [ docutils ];
18   # statistics package does not have any tests
19   doCheck = false;
21   meta = {
22     description = "A Python 2.* port of 3.4 Statistics Module";
23     homepage = "https://github.com/digitalemagine/py-statistics";
24     license = lib.licenses.asl20;
25     maintainers = with lib.maintainers; [ ];
26   };