depot/third_party/nixpkgs/pkgs/development/python-modules/justbases/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

24 lines
513 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, hypothesis
}:
buildPythonPackage rec {
pname = "justbases";
version = "0.15";
src = fetchPypi {
inherit pname version;
hash = "sha256-vQEfC8Z7xMM/fhBG6jSuhLEP/Iece5Rje1yqbpjVuPg=";
};
nativeCheckInputs = [ hypothesis ];
meta = with lib; {
description = "conversion of ints and rationals to any base";
homepage = "https://pythonhosted.org/justbases";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ nickcao ];
};
}