nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "future-fstrings";
9 version = "1.2.0";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit version;
14 pname = "future_fstrings";
15 sha256 = "6cf41cbe97c398ab5a81168ce0dbb8ad95862d3caf23c21e4430627b90844089";
16 };
17
18 # No tests included in Pypi archive
19 doCheck = false;
20
21 meta = {
22 homepage = "https://github.com/asottile/future-fstrings";
23 description = "Backport of fstrings to python<3.6";
24 mainProgram = "future-fstrings-show";
25 license = lib.licenses.mit;
26 maintainers = with lib.maintainers; [ nyanloutre ];
27 };
28}