about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/statistics/default.nix
blob: 4380e592ff56b5f4dc1dafe6a0a33c670a8efdbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, fetchPypi
, buildPythonPackage
, docutils
}:

buildPythonPackage rec {
  pname = "statistics";
  version = "1.0.3.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2dc379b80b07bf2ddd5488cad06b2b9531da4dd31edb04dc9ec0dc226486c138";
  };

  propagatedBuildInputs = [ docutils ];

  # statistics package does not have any tests
  doCheck = false;

  meta = {
    description = "A Python 2.* port of 3.4 Statistics Module";
    homepage = https://github.com/digitalemagine/py-statistics;
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ costrouc ];
  };
}