16 lines
226 B
Nix
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
|
|
];
|
|
}
|
|
|