1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "fn";
5 version = "0.4.3";
6
7 meta = {
8 description = ''
9 Functional programming in Python: implementation of missing
10 features to enjoy FP
11 '';
12 homepage = "https://github.com/kachayev/fn.py";
13 license = lib.licenses.asl20;
14 };
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "1nmsjmn8jb4gp22ksx0j0hhdf4y0zm8rjykyy2i6flzimg6q1kgq";
19 };
20}