mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
22 lines
290 B
Nix
22 lines
290 B
Nix
{ buildPythonPackage
|
|
, tomli
|
|
, pytestCheckHook
|
|
, python-dateutil
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tomli-tests";
|
|
inherit (tomli) version;
|
|
|
|
src = tomli.testsout;
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
python-dateutil
|
|
tomli
|
|
];
|
|
}
|