pythonPackages.statistics: init at 1.0.3.5
- package does not come with tests
This commit is contained in:
parent
90c353d44e
commit
6e9d37713a
27
pkgs/development/python-modules/statistics/default.nix
Normal file
27
pkgs/development/python-modules/statistics/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -509,6 +509,8 @@ in {
|
|||||||
|
|
||||||
spglib = callPackage ../development/python-modules/spglib { };
|
spglib = callPackage ../development/python-modules/spglib { };
|
||||||
|
|
||||||
|
statistics = callPackage ../development/python-modules/statistics { };
|
||||||
|
|
||||||
sumo = callPackage ../development/python-modules/sumo { };
|
sumo = callPackage ../development/python-modules/sumo { };
|
||||||
|
|
||||||
supervise_api = callPackage ../development/python-modules/supervise_api { };
|
supervise_api = callPackage ../development/python-modules/supervise_api { };
|
||||||
|
Loading…
Reference in New Issue
Block a user