Files
pyrad3/default.nix
2020-08-17 09:17:44 +02:00

16 lines
226 B
Nix

{pkgs, python, ...}:
python.pkgs.buildPythonPackage rec {
pname = "pyrad";
version = "1.0-alpha";
buildInputs = with python.pkgs; [ ];
checkInputs = with python.pkgs; [
black
pytest
# pytest-cov
];
}