Files
pyrad3/default.nix
Istvan Ruzman fd16436c3c safe progress
2020-08-06 18:04:24 +02:00

15 lines
225 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
];
}