Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 23 lines 653 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "toml"; 5 version = "0.10.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0p1xww2mzkhqvxkfvmfzm58bbfj812zhdz4rwdjiv94ifz2q37r2"; 10 }; 11 12 # This package has a test script (built for Travis) that involves a) 13 # looking in the home directory for a binary test runner and b) using 14 # git to download a test suite. 15 doCheck = false; 16 17 meta = with stdenv.lib; { 18 description = "a Python library for parsing and creating TOML"; 19 homepage = "https://github.com/uiri/toml"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ twey ]; 22 }; 23}