ee87acdb12
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-backports.csv/versions
21 lines
452 B
Nix
21 lines
452 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, future }:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "backports.csv";
|
|
version = "1.0.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0vdx5jlhs91iizc8j8l8811nqprwvdx39pgkdc82w2qkfgzxyxqj";
|
|
};
|
|
|
|
propagatedBuildInputs = [ future ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Backport of Python 3 csv module";
|
|
homepage = https://github.com/ryanhiebert;
|
|
license = licenses.psfl;
|
|
};
|
|
}
|