python3Packages.justbases: init at 0.15
This commit is contained in:
parent
c4552ce8cd
commit
c75a1700da
2 changed files with 26 additions and 0 deletions
24
pkgs/development/python-modules/justbases/default.nix
Normal file
24
pkgs/development/python-modules/justbases/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue