Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
python.pkgs.agate-excel: 0.2.2 -> 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz committed Mar 17, 2019
1 parent f715658 commit b1454f5
Showing 1 changed file with 21 additions and 14 deletions.
35 changes: 21 additions & 14 deletions pkgs/development/python-modules/agate-excel/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,28 @@
{ stdenv, fetchPypi, buildPythonPackage, agate, openpyxl, xlrd }:
{ lib, fetchPypi, fetchpatch, buildPythonPackage
, agate, openpyxl, xlrd, nose
}:

buildPythonPackage rec {
pname = "agate-excel";
version = "0.2.2";
pname = "agate-excel";
version = "0.2.3";

src = fetchPypi {
inherit pname version;
sha256 = "8923f71ee2b5b7b21e52fb314a769b28fb902f647534f5cbbb41991d8710f4c7";
};
src = fetchPypi {
inherit pname version;
sha256 = "8f255ef2c87c436b7132049e1dd86c8e08bf82d8c773aea86f3069b461a17d52";
};

propagatedBuildInputs = [ agate openpyxl xlrd ];
propagatedBuildInputs = [ agate openpyxl xlrd ];

meta = with stdenv.lib; {
description = "Adds read support for excel files to agate";
homepage = "https://github.com/wireservice/agate-excel";
license = licenses.mit;
maintainers = with maintainers; [ vrthra ];
};
checkInputs = [ nose ];

checkPhase = ''
nosetests
'';

meta = with lib; {
description = "Adds read support for excel files to agate";
homepage = https://github.com/wireservice/agate-excel;
license = licenses.mit;
maintainers = with maintainers; [ vrthra ];
};
}

0 comments on commit b1454f5

Please sign in to comment.