nixpkgs/pkgs/development/python-modules/statistics/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

30 lines
603 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
docutils,
}:
buildPythonPackage rec {
pname = "statistics";
version = "1.0.3.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "2dc379b80b07bf2ddd5488cad06b2b9531da4dd31edb04dc9ec0dc226486c138";
};
propagatedBuildInputs = [ docutils ];
# statistics package does not have any tests
doCheck = false;
meta = {
description = "Python 2.* port of 3.4 Statistics Module";
homepage = "https://github.com/digitalemagine/py-statistics";
license = lib.licenses.asl20;
maintainers = [ ];
};
}