summary refs log tree commit diff
path: root/pkgs/development/python-modules/future-fstrings/default.nix
blob: ffb798e6487fb0deab0607dafcf058c482b73129 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:

buildPythonPackage rec {
  pname = "future-fstrings";
  version = "1.0.0";

  src = fetchPypi {
    inherit version;
    pname = "future_fstrings";
    sha256 = "1pra33in6rinrcs5wvdb1rbxmx223j93ahdwhzwgf7wyfsnjda98";
  };

  # No tests included in Pypi archive
  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/asottile/future-fstrings";
    description = "A backport of fstrings to python<3.6";
    license = licenses.mit;
    maintainers = with maintainers; [ nyanloutre ];
    broken = pythonOlder "3.6"; # dependency tokenize-rt not packaged
  };
}