3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.statistics: init at 1.0.3.5

- package does not come with tests
This commit is contained in:
Chris Ostrouchov 2018-08-10 16:37:45 -04:00
parent 90c353d44e
commit 6e9d37713a
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -509,6 +509,8 @@ in {
spglib = callPackage ../development/python-modules/spglib { };
statistics = callPackage ../development/python-modules/statistics { };
sumo = callPackage ../development/python-modules/sumo { };
supervise_api = callPackage ../development/python-modules/supervise_api { };