mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
backports.csv: init at 1.0.5
This commit is contained in:
parent
c8f55331df
commit
d8848c0202
21
pkgs/development/python-modules/backports_csv/default.nix
Normal file
21
pkgs/development/python-modules/backports_csv/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user