backports.csv: init at 1.0.5

This commit is contained in:
Samuel Leathers 2017-09-16 19:22:46 -04:00
parent c8f55331df
commit d8848c0202
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi, future }:
buildPythonPackage rec {
pname = "backports.csv";
version = "1.0.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1imzbrradkfn8s2m1qcimyn74dn1mz2p3j381jljn166rf2i6hlc";
};
propogatedBuildInputs = [ future ];
meta = with stdenv.lib; {
description = "Backport of Python 3 csv module";
homepage = https://github.com/ryanhiebert;
license = licenses.psfl;
};
}

View file

@ -133,6 +133,8 @@ in {
# packages defined elsewhere
backports_csv = callPackage ../development/python-modules/backports_csv {};
bap = callPackage ../development/python-modules/bap {
bap = pkgs.ocamlPackages_4_02.bap;
};