mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
35 lines
707 B
Nix
35 lines
707 B
Nix
{ stdenv
|
|
, 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";
|
|
};
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} test/test.py
|
|
pytest test
|
|
'';
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A TOML parser/writer for Python";
|
|
homepage = "https://github.com/avakar/pytoml";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
};
|
|
}
|