My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/backports_csv/default.nix

20 lines
444 B

{ lib, buildPythonPackage, fetchPypi, future }:
buildPythonPackage rec {
pname = "backports.csv";
version = "1.0.7";
src = fetchPypi {
inherit pname version;
sha256 = "0vdx5jlhs91iizc8j8l8811nqprwvdx39pgkdc82w2qkfgzxyxqj";
};
propagatedBuildInputs = [ future ];
meta = with lib; {
description = "Backport of Python 3 csv module";
homepage = "https://github.com/ryanhiebert";
license = licenses.psfl;
};
}