mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
21 lines
444 B
Nix
21 lines
444 B
Nix
{ 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;
|
|
};
|
|
}
|