Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, pythonOlder }: 2 3buildPythonPackage rec { 4 pname = "future-fstrings"; 5 version = "0.4.5"; 6 7 src = fetchPypi { 8 inherit version; 9 pname = "future_fstrings"; 10 sha256 = "891c5d5f073b3e3ff686bebde0a4c45c479065f45c8cbd6de19323d5a50738a8"; 11 }; 12 13 # No tests included in Pypi archive 14 doCheck = false; 15 16 meta = with lib; { 17 homepage = https://github.com/asottile/future-fstrings; 18 description = "A backport of fstrings to python<3.6"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ nyanloutre ]; 21 broken = pythonOlder "3.6"; # dependency tokenize-rt not packaged 22 }; 23}