mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
33afbf39f6
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.
35 lines
703 B
Nix
35 lines
703 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, python
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytoml";
|
|
version = "0.1.20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "avakar";
|
|
repo = "pytoml";
|
|
rev = "v${version}";
|
|
fetchSubmodules = true; # ensure test submodule is available
|
|
sha256 = "02hjq44zhh6z0fsbm3hvz34sav6fic90sjrw8g1pkdvskzzl46mz";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytest ];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} test/test.py
|
|
pytest test
|
|
'';
|
|
|
|
|
|
meta = with lib; {
|
|
description = "A TOML parser/writer for Python";
|
|
homepage = "https://github.com/avakar/pytoml";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
};
|
|
}
|