1{ stdenv, buildPythonPackage, fetchPypi, future }:
2
3buildPythonPackage rec {
4
5 pname = "backports.csv";
6 version = "1.0.6";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "bed884eeb967c8d6f517dfcf672914324180f1e9ceeb0376fde2c4c32fd7008d";
11 };
12
13 propagatedBuildInputs = [ future ];
14
15 meta = with stdenv.lib; {
16 description = "Backport of Python 3 csv module";
17 homepage = https://github.com/ryanhiebert;
18 license = licenses.psfl;
19 };
20}