nixpkgs/pkgs/development/python-modules/justbases/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

25 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 ];
};
}