11 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
18 owner = "samuelcolvin";
21 sha256 = "sha256-tvX4KcQGw0khBjEXVFmkhsVyAkdr2Bgm6IfD1yGZ37c=";
24 cargoDeps = rustPlatform.fetchCargoTarball {
26 name = "${pname}-${version}";
27 sha256 = "sha256-KcF3Z71S7ZNZicViqwpClfT736nYYbKcKWylOP+S3HI=";
30 nativeBuildInputs = with rustPlatform; [
41 pythonImportsCheck = [
54 description = "Rust based TOML library for Python";
55 homepage = "https://github.com/samuelcolvin/rtoml";
56 license = licenses.mit;
57 maintainers = with maintainers; [ evils ];