python3Packages.justbases: init at 0.15

This commit is contained in:
Nick Cao 2022-08-01 23:36:59 +08:00 committed by Jonathan Ringer
parent c4552ce8cd
commit c75a1700da
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
, hypothesis
}:
buildPythonPackage rec {
pname = "justbases";
version = "0.15";
src = fetchPypi {
inherit pname version;
hash = "sha256-vQEfC8Z7xMM/fhBG6jSuhLEP/Iece5Rje1yqbpjVuPg=";
};
checkInputs = [ 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 ];
};
}

View file

@ -4707,6 +4707,8 @@ in {
justbackoff = callPackage ../development/python-modules/justbackoff { };
justbases = callPackage ../development/python-modules/justbases { };
jwcrypto = callPackage ../development/python-modules/jwcrypto { };
jxmlease = callPackage ../development/python-modules/jxmlease { };